#[repr(transparent)]pub struct DeviceGroupCommandBufferBeginInfoBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> DeviceGroupCommandBufferBeginInfoBuilder<'a>
impl<'a> DeviceGroupCommandBufferBeginInfoBuilder<'a>
pub fn device_mask(
self,
device_mask: u32
) -> DeviceGroupCommandBufferBeginInfoBuilder<'a>
sourcepub fn build(self) -> DeviceGroupCommandBufferBeginInfo
pub fn build(self) -> DeviceGroupCommandBufferBeginInfo
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Trait Implementations
sourceimpl<'a> Deref for DeviceGroupCommandBufferBeginInfoBuilder<'a>
impl<'a> Deref for DeviceGroupCommandBufferBeginInfoBuilder<'a>
type Target = DeviceGroupCommandBufferBeginInfo
type Target = DeviceGroupCommandBufferBeginInfo
The resulting type after dereferencing.
sourcefn deref(
&self
) -> &<DeviceGroupCommandBufferBeginInfoBuilder<'a> as Deref>::Target
fn deref(
&self
) -> &<DeviceGroupCommandBufferBeginInfoBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for DeviceGroupCommandBufferBeginInfoBuilder<'a>
impl<'a> DerefMut for DeviceGroupCommandBufferBeginInfoBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <DeviceGroupCommandBufferBeginInfoBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <DeviceGroupCommandBufferBeginInfoBuilder<'a> as Deref>::Target
Mutably dereferences the value.
impl<'_> ExtendsCommandBufferBeginInfo for DeviceGroupCommandBufferBeginInfoBuilder<'_>
Auto Trait Implementations
impl<'a> RefUnwindSafe for DeviceGroupCommandBufferBeginInfoBuilder<'a>
impl<'a> !Send for DeviceGroupCommandBufferBeginInfoBuilder<'a>
impl<'a> !Sync for DeviceGroupCommandBufferBeginInfoBuilder<'a>
impl<'a> Unpin for DeviceGroupCommandBufferBeginInfoBuilder<'a>
impl<'a> UnwindSafe for DeviceGroupCommandBufferBeginInfoBuilder<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more