#[non_exhaustive]#[repr(i32)]pub enum AttributeTypeInfo {
Show 16 variants
    Invalid = -1,
    None = 0,
    Point = 1,
    Hpoint = 2,
    Vector = 3,
    Normal = 4,
    Color = 5,
    Quaternion = 6,
    Matrix3 = 7,
    Matrix = 8,
    St = 9,
    Hidden = 10,
    Box2 = 11,
    Box = 12,
    Texture = 13,
    Max = 14,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Invalid = -1
None = 0
Point = 1
Hpoint = 2
Vector = 3
Normal = 4
Color = 5
Quaternion = 6
Matrix3 = 7
Matrix = 8
St = 9
Hidden = 10
Box2 = 11
Box = 12
Texture = 13
Max = 14
Trait Implementations§
Source§impl Clone for AttributeTypeInfo
 
impl Clone for AttributeTypeInfo
Source§fn clone(&self) -> AttributeTypeInfo
 
fn clone(&self) -> AttributeTypeInfo
Returns a copy 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 AttributeTypeInfo
 
impl Debug for AttributeTypeInfo
Source§impl Hash for AttributeTypeInfo
 
impl Hash for AttributeTypeInfo
Source§impl PartialEq for AttributeTypeInfo
 
impl PartialEq for AttributeTypeInfo
impl Copy for AttributeTypeInfo
impl Eq for AttributeTypeInfo
impl StructuralPartialEq for AttributeTypeInfo
Auto Trait Implementations§
impl Freeze for AttributeTypeInfo
impl RefUnwindSafe for AttributeTypeInfo
impl Send for AttributeTypeInfo
impl Sync for AttributeTypeInfo
impl Unpin for AttributeTypeInfo
impl UnwindSafe for AttributeTypeInfo
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