pub enum AttributeValues {
Int8(Vec<i8>),
UInt8(Vec<u8>),
Int16(Vec<i16>),
UInt16(Vec<u16>),
Int32(Vec<i32>),
UInt32(Vec<u32>),
Float32(Vec<f32>),
}Variants§
Int8(Vec<i8>)
UInt8(Vec<u8>)
Int16(Vec<i16>)
UInt16(Vec<u16>)
Int32(Vec<i32>)
UInt32(Vec<u32>)
Float32(Vec<f32>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AttributeValues
impl RefUnwindSafe for AttributeValues
impl Send for AttributeValues
impl Sync for AttributeValues
impl Unpin for AttributeValues
impl UnwindSafe for AttributeValues
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