pub struct DescriptorPoolDescriptor<'a> {
pub name: &'a str,
pub max_sets: u32,
pub pool_sizes: &'a [DescriptorPoolSizeBuilder<'a>],
pub flags: Option<DescriptorPoolCreateFlags>,
}Expand description
Describes how an image view should be configured.
Fields§
§name: &'a strName used for debugging.
max_sets: u32Max sets.
pool_sizes: &'a [DescriptorPoolSizeBuilder<'a>]All sizes of the pool.
flags: Option<DescriptorPoolCreateFlags>Optional flags.
Trait Implementations§
Source§impl<'a> Clone for DescriptorPoolDescriptor<'a>
impl<'a> Clone for DescriptorPoolDescriptor<'a>
Source§fn clone(&self) -> DescriptorPoolDescriptor<'a>
fn clone(&self) -> DescriptorPoolDescriptor<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<'a> Freeze for DescriptorPoolDescriptor<'a>
impl<'a> RefUnwindSafe for DescriptorPoolDescriptor<'a>
impl<'a> Send for DescriptorPoolDescriptor<'a>
impl<'a> Sync for DescriptorPoolDescriptor<'a>
impl<'a> Unpin for DescriptorPoolDescriptor<'a>
impl<'a> UnwindSafe for DescriptorPoolDescriptor<'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