#[repr(C)]pub struct VertexInputAttributeDescription {
    pub location: u32,
    pub binding: u32,
    pub format: Format,
    pub offset: u32,
}Expand description
Fields§
§location: u32§binding: u32§format: Format§offset: u32Implementations§
Source§impl VertexInputAttributeDescription
 
impl VertexInputAttributeDescription
pub fn builder<'a>() -> VertexInputAttributeDescriptionBuilder<'a>
Trait Implementations§
Source§impl Clone for VertexInputAttributeDescription
 
impl Clone for VertexInputAttributeDescription
Source§fn clone(&self) -> VertexInputAttributeDescription
 
fn clone(&self) -> VertexInputAttributeDescription
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 Default for VertexInputAttributeDescription
 
impl Default for VertexInputAttributeDescription
Source§fn default() -> VertexInputAttributeDescription
 
fn default() -> VertexInputAttributeDescription
Returns the “default value” for a type. Read more
impl Copy for VertexInputAttributeDescription
Auto Trait Implementations§
impl Freeze for VertexInputAttributeDescription
impl RefUnwindSafe for VertexInputAttributeDescription
impl Send for VertexInputAttributeDescription
impl Sync for VertexInputAttributeDescription
impl Unpin for VertexInputAttributeDescription
impl UnwindSafe for VertexInputAttributeDescription
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