pub enum ExternalBufferMemory {
OpaqueFd(Fd),
DmaBuf(Fd),
HostAllocation(Ptr),
HostMappedForeignMemory(Ptr),
}
Expand description
Representation of an external memory for buffer creation.
Variants§
OpaqueFd(Fd)
This is supported on Unix only. Same as ExternalMemoryTypeFlags::OPAQUE_FD while holding a Fd.
DmaBuf(Fd)
This is supported on Linux or Android only. Same as ExternalMemoryTypeFlags::DMA_BUF while holding a Fd.
HostAllocation(Ptr)
Same as ExternalMemoryTypeFlags::HOST_ALLOCATION while holding a Ptr.
HostMappedForeignMemory(Ptr)
Same as ExternalMemoryTypeFlags::HOST_MAPPED_FOREIGN_MEMORY while holding a Ptr.
Implementations§
Source§impl ExternalBufferMemory
impl ExternalBufferMemory
Sourcepub fn external_memory_type(&self) -> ExternalMemoryType
pub fn external_memory_type(&self) -> ExternalMemoryType
Get the ExternalMemoryType from this enum.
Sourcepub fn platform_memory_type(&self) -> PlatformMemoryType
pub fn platform_memory_type(&self) -> PlatformMemoryType
Get the PlatformMemoryType from this enum.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExternalBufferMemory
impl RefUnwindSafe for ExternalBufferMemory
impl !Send for ExternalBufferMemory
impl !Sync for ExternalBufferMemory
impl Unpin for ExternalBufferMemory
impl UnwindSafe for ExternalBufferMemory
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