pub enum VertexBufferType {
Position,
Normal,
Tangent,
Uv0,
Uv1,
Colors,
}
Expand description
Identifies the semantic use of a vertex buffer.
Variants§
Trait Implementations§
Source§impl Clone for VertexBufferType
impl Clone for VertexBufferType
Source§fn clone(&self) -> VertexBufferType
fn clone(&self) -> VertexBufferType
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 VertexBufferType
impl Debug for VertexBufferType
impl Copy for VertexBufferType
Auto Trait Implementations§
impl Freeze for VertexBufferType
impl RefUnwindSafe for VertexBufferType
impl Send for VertexBufferType
impl Sync for VertexBufferType
impl Unpin for VertexBufferType
impl UnwindSafe for VertexBufferType
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