pub struct DeviceMemoryCopyKHRBuilder<'a> { /* private fields */ }Expand description
Builder for DeviceMemoryCopyKHR with lifetime-tied pNext safety.
Implementations§
Source§impl<'a> DeviceMemoryCopyKHRBuilder<'a>
impl<'a> DeviceMemoryCopyKHRBuilder<'a>
pub fn src_range( self, value: DeviceAddressRangeKHR, ) -> DeviceMemoryCopyKHRBuilder<'a>
pub fn src_flags( self, value: AddressCommandFlagBitsKHR, ) -> DeviceMemoryCopyKHRBuilder<'a>
pub fn dst_range( self, value: DeviceAddressRangeKHR, ) -> DeviceMemoryCopyKHRBuilder<'a>
pub fn dst_flags( self, value: AddressCommandFlagBitsKHR, ) -> DeviceMemoryCopyKHRBuilder<'a>
Sourcepub fn push_next<T>(self, next: &'a mut T) -> DeviceMemoryCopyKHRBuilder<'a>where
T: ExtendsDeviceMemoryCopyKHR,
pub fn push_next<T>(self, next: &'a mut T) -> DeviceMemoryCopyKHRBuilder<'a>where
T: ExtendsDeviceMemoryCopyKHR,
Prepend a struct to the pNext chain. See DeviceMemoryCopyKHR’s Extended By section for valid types.
Trait Implementations§
Source§impl<'a> Deref for DeviceMemoryCopyKHRBuilder<'a>
impl<'a> Deref for DeviceMemoryCopyKHRBuilder<'a>
Source§type Target = DeviceMemoryCopyKHR
type Target = DeviceMemoryCopyKHR
The resulting type after dereferencing.
Source§impl<'a> DerefMut for DeviceMemoryCopyKHRBuilder<'a>
impl<'a> DerefMut for DeviceMemoryCopyKHRBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for DeviceMemoryCopyKHRBuilder<'a>
impl<'a> RefUnwindSafe for DeviceMemoryCopyKHRBuilder<'a>
impl<'a> !Send for DeviceMemoryCopyKHRBuilder<'a>
impl<'a> !Sync for DeviceMemoryCopyKHRBuilder<'a>
impl<'a> Unpin for DeviceMemoryCopyKHRBuilder<'a>
impl<'a> UnsafeUnpin for DeviceMemoryCopyKHRBuilder<'a>
impl<'a> UnwindSafe for DeviceMemoryCopyKHRBuilder<'a>
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