pub struct ExclusiveLockedSharedMemoryBlock<'a>(/* private fields */);Trait Implementations§
Source§type ConcreteDevice = VulkanGfx
type ConcreteDevice = VulkanGfx
A concrete type of the parent device object.
Source§fn device(&self) -> &Self::ConcreteDevice
fn device(&self) -> &Self::ConcreteDevice
Retrieve a reference to a device object that creates this object
Source§fn device_handle(&self) -> VkDevice
fn device_handle(&self) -> VkDevice
Retrieve a reference to a device handle that creates this objecs
fn device_transparent_ref<'a>(&'a self) -> VkHandleRef<'a, VkDevice>
Source§fn commitment_bytes(&self) -> u64
fn commitment_bytes(&self) -> u64
Query the current commitment for a
DeviceMemorySource§unsafe fn map_raw(
&mut self,
range: Range<u64>,
) -> Result<*mut c_void, ResultCode>
unsafe fn map_raw( &mut self, range: Range<u64>, ) -> Result<*mut c_void, ResultCode>
Map a memory object into application address space Read more
Source§fn map<'a>(
&'a mut self,
range: Range<usize>,
) -> Result<MappedMemory<'a, Self>, ResultCode>
fn map<'a>( &'a mut self, range: Range<usize>, ) -> Result<MappedMemory<'a, Self>, ResultCode>
Map a memory object into application address space Read more
type Handle = VkDeviceMemory
Source§fn native_ptr(&self) -> Self::Handle
fn native_ptr(&self) -> Self::Handle
Retrieve an underlying handle
fn as_transparent_ref<'a>(&'a self) -> VkHandleRef<'a, Self::Handle>
Source§fn native_ptr_mut(&mut self) -> Self::Handle
fn native_ptr_mut(&mut self) -> Self::Handle
Retrieve an underlying mutable handle
fn as_transparent_ref_mut<'a>(&'a mut self) -> VkHandleRefMut<'a, Self::Handle>
Auto Trait Implementations§
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more