#[repr(u8)]pub enum VectorSize {
    Bi = 2,
    Tri = 3,
    Quad = 4,
}Expand description
Number of components in a vector.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for VectorSize
 
impl Clone for VectorSize
Source§fn clone(&self) -> VectorSize
 
fn clone(&self) -> VectorSize
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 VectorSize
 
impl Debug for VectorSize
Source§impl From<VectorSize> for Alignment
 
impl From<VectorSize> for Alignment
Source§fn from(size: VectorSize) -> Self
 
fn from(size: VectorSize) -> Self
Converts to this type from the input type.
Source§impl Hash for VectorSize
 
impl Hash for VectorSize
Source§impl Ord for VectorSize
 
impl Ord for VectorSize
Source§fn cmp(&self, other: &VectorSize) -> Ordering
 
fn cmp(&self, other: &VectorSize) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for VectorSize
 
impl PartialEq for VectorSize
Source§impl PartialOrd for VectorSize
 
impl PartialOrd for VectorSize
impl Copy for VectorSize
impl Eq for VectorSize
impl StructuralPartialEq for VectorSize
Auto Trait Implementations§
impl Freeze for VectorSize
impl RefUnwindSafe for VectorSize
impl Send for VectorSize
impl Sync for VectorSize
impl Unpin for VectorSize
impl UnwindSafe for VectorSize
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<Q, K> Comparable<K> for Q
 
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.