pub struct CopyDescriptorSet {
pub src_set: DescriptorSet,
pub src_binding: u32,
pub src_array_element: u32,
pub dst_set: DescriptorSet,
pub dst_binding: u32,
pub dst_array_element: u32,
pub descriptor_count: u32,
pub chain: Option<CopyDescriptorSetChain>,
}
Expand description
Fields§
§src_set: DescriptorSet
§src_binding: u32
§src_array_element: u32
§dst_set: DescriptorSet
§dst_binding: u32
§dst_array_element: u32
§descriptor_count: u32
§chain: Option<CopyDescriptorSetChain>
Trait Implementations§
Source§impl Clone for CopyDescriptorSet
impl Clone for CopyDescriptorSet
Source§fn clone(&self) -> CopyDescriptorSet
fn clone(&self) -> CopyDescriptorSet
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 moreSource§impl Debug for CopyDescriptorSet
impl Debug for CopyDescriptorSet
Source§impl PartialEq for CopyDescriptorSet
impl PartialEq for CopyDescriptorSet
impl StructuralPartialEq for CopyDescriptorSet
Auto Trait Implementations§
impl Freeze for CopyDescriptorSet
impl !RefUnwindSafe for CopyDescriptorSet
impl Send for CopyDescriptorSet
impl Sync for CopyDescriptorSet
impl Unpin for CopyDescriptorSet
impl !UnwindSafe for CopyDescriptorSet
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