logo
pub struct VertexMemberInfo {
    pub offset: usize,
    pub ty: VertexMemberTy,
    pub array_size: usize,
}
Expand description

Information about a member of a vertex struct.

Fields

offset: usize

Offset of the member in bytes from the start of the struct.

ty: VertexMemberTy

Type of data. This is used to check that the interface is matching.

array_size: usize

Number of consecutive elements of that type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.