#[repr(u32)]pub enum MeshBufferType {
Vertex = 1,
Index = 2,
Custom = 3,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MeshBufferType
impl Clone for MeshBufferType
Source§fn clone(&self) -> MeshBufferType
fn clone(&self) -> MeshBufferType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MeshBufferType
impl Debug for MeshBufferType
Source§impl PartialEq for MeshBufferType
impl PartialEq for MeshBufferType
Source§fn eq(&self, other: &MeshBufferType) -> bool
fn eq(&self, other: &MeshBufferType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MeshBufferType
impl Eq for MeshBufferType
impl StructuralPartialEq for MeshBufferType
Auto Trait Implementations§
impl Freeze for MeshBufferType
impl RefUnwindSafe for MeshBufferType
impl Send for MeshBufferType
impl Sync for MeshBufferType
impl Unpin for MeshBufferType
impl UnsafeUnpin for MeshBufferType
impl UnwindSafe for MeshBufferType
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