#[repr(u8)]pub enum KeyType {
Show 13 variants
Unknown = 0,
Point3 = 1,
BezPoint3 = 2,
Scalar = 3,
BezScalar = 4,
Scale = 5,
BezScale = 6,
Quat = 7,
CompressedQuat32 = 8,
CompressedQuat64 = 9,
MaxKey = 10,
Matrix33 = 11,
Matrix44 = 12,
}Expand description
Key type enum values.
Variants§
Unknown = 0
Point3 = 1
BezPoint3 = 2
Scalar = 3
BezScalar = 4
Scale = 5
BezScale = 6
Quat = 7
CompressedQuat32 = 8
CompressedQuat64 = 9
MaxKey = 10
Matrix33 = 11
Matrix44 = 12
Implementations§
Trait Implementations§
impl Copy for KeyType
impl Eq for KeyType
impl StructuralPartialEq for KeyType
Auto Trait Implementations§
impl Freeze for KeyType
impl RefUnwindSafe for KeyType
impl Send for KeyType
impl Sync for KeyType
impl Unpin for KeyType
impl UnsafeUnpin for KeyType
impl UnwindSafe for KeyType
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