pub struct DescriptorSetUpdateBatch<'r>(/* private fields */);
Expand description
Batching mechanism for Updating Descriptor Sets
Implementations§
Source§impl<'r> DescriptorSetUpdateBatch<'r>
impl<'r> DescriptorSetUpdateBatch<'r>
Sourcepub fn write_index(
&mut self,
dest: impl Into<VkDescriptorSet>,
bound: u32,
array: u32,
contents: DescriptorContents<'r>,
) -> &mut Self
pub fn write_index( &mut self, dest: impl Into<VkDescriptorSet>, bound: u32, array: u32, contents: DescriptorContents<'r>, ) -> &mut Self
Write an information to bound index and array index in destination.
Sourcepub fn write(
&mut self,
dest: impl Into<VkDescriptorSet>,
bound: u32,
contents: DescriptorContents<'r>,
) -> &mut Self
pub fn write( &mut self, dest: impl Into<VkDescriptorSet>, bound: u32, contents: DescriptorContents<'r>, ) -> &mut Self
Write an information to bound index in destination.
Auto Trait Implementations§
impl<'r> Freeze for DescriptorSetUpdateBatch<'r>
impl<'r> !RefUnwindSafe for DescriptorSetUpdateBatch<'r>
impl<'r> !Send for DescriptorSetUpdateBatch<'r>
impl<'r> !Sync for DescriptorSetUpdateBatch<'r>
impl<'r> Unpin for DescriptorSetUpdateBatch<'r>
impl<'r> !UnwindSafe for DescriptorSetUpdateBatch<'r>
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