pub struct DependencyInfoBuilder<'a> { /* private fields */ }Expand description
Builder for DependencyInfo with lifetime-tied pNext safety.
Implementations§
Source§impl<'a> DependencyInfoBuilder<'a>
impl<'a> DependencyInfoBuilder<'a>
pub fn dependency_flags(self, value: DependencyFlags) -> Self
pub fn memory_barriers(self, slice: &'a [MemoryBarrier2]) -> Self
pub fn buffer_memory_barriers(self, slice: &'a [BufferMemoryBarrier2]) -> Self
pub fn image_memory_barriers(self, slice: &'a [ImageMemoryBarrier2]) -> Self
Sourcepub fn push_next<T: ExtendsDependencyInfo>(self, next: &'a mut T) -> Self
pub fn push_next<T: ExtendsDependencyInfo>(self, next: &'a mut T) -> Self
Prepend a struct to the pNext chain. See DependencyInfo’s Extended By section for valid types.
Trait Implementations§
Source§impl<'a> Deref for DependencyInfoBuilder<'a>
impl<'a> Deref for DependencyInfoBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for DependencyInfoBuilder<'a>
impl<'a> RefUnwindSafe for DependencyInfoBuilder<'a>
impl<'a> !Send for DependencyInfoBuilder<'a>
impl<'a> !Sync for DependencyInfoBuilder<'a>
impl<'a> Unpin for DependencyInfoBuilder<'a>
impl<'a> UnsafeUnpin for DependencyInfoBuilder<'a>
impl<'a> UnwindSafe for DependencyInfoBuilder<'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