Enum vtk_format::primitive::Data3
source · [−]pub enum Data3 {
Bit(Vec<[bool; 3]>),
UnsignedChar(Vec<[u8; 3]>),
Char(Vec<[i8; 3]>),
UnsignedShort(Vec<[u16; 3]>),
Short(Vec<[i16; 3]>),
UnsignedInt(Vec<[u32; 3]>),
Int(Vec<[i32; 3]>),
UnsignedLong(Vec<[u64; 3]>),
Long(Vec<[i64; 3]>),
Float(Vec<[f32; 3]>),
Double(Vec<[f64; 3]>),
}Variants
Bit(Vec<[bool; 3]>)
UnsignedChar(Vec<[u8; 3]>)
Char(Vec<[i8; 3]>)
UnsignedShort(Vec<[u16; 3]>)
Short(Vec<[i16; 3]>)
UnsignedInt(Vec<[u32; 3]>)
Int(Vec<[i32; 3]>)
UnsignedLong(Vec<[u64; 3]>)
Long(Vec<[i64; 3]>)
Float(Vec<[f32; 3]>)
Double(Vec<[f64; 3]>)
Trait Implementations
sourceimpl PartialOrd<Data3> for Data3
impl PartialOrd<Data3> for Data3
sourcefn partial_cmp(&self, other: &Data3) -> Option<Ordering>
fn partial_cmp(&self, other: &Data3) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl StructuralPartialEq for Data3
Auto Trait Implementations
impl RefUnwindSafe for Data3
impl Send for Data3
impl Sync for Data3
impl Unpin for Data3
impl UnwindSafe for Data3
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more