Struct glin::attributes::MatFormat[][src]

pub struct MatFormat {
    pub name: Cow<'static, str>,
    pub location: u32,
    pub cols: usize,
    pub rows: usize,
    pub offset_in_vertex: usize,
}

Attribute format for matrices

Internally generates several Format depending on the number of cols and rows

Fields

name: Cow<'static, str>location: u32cols: usizerows: usizeoffset_in_vertex: usize

Implementations

impl MatFormat[src]

pub fn into_row_formats(self) -> Vec<Format>[src]

pub fn source_from<B: DynVertexBufferBinding + Clone>(
    &self,
    buffer: &B
) -> Vec<(Format, B)>
[src]

Trait Implementations

impl Clone for MatFormat[src]

impl Debug for MatFormat[src]

impl Default for MatFormat[src]

impl Hash for MatFormat[src]

impl Into<Vec<Format, Global>> for MatFormat[src]

impl PartialEq<MatFormat> for MatFormat[src]

impl Eq for MatFormat[src]

impl StructuralEq for MatFormat[src]

impl StructuralPartialEq for MatFormat[src]

Auto Trait Implementations

impl RefUnwindSafe for MatFormat

impl Send for MatFormat

impl Sync for MatFormat

impl Unpin for MatFormat

impl UnwindSafe for MatFormat

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CallHasher for T where
    T: Hash
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.