Enum vtk_format::primitive::Data1D
source · [−]pub enum Data1D {
Bit(Vec<bool>),
UnsignedChar(Vec<u8>),
Char(Vec<i8>),
UnsignedShort(Vec<u16>),
Short(Vec<i16>),
UnsignedInt(Vec<u32>),
Int(Vec<i32>),
UnsignedLong(Vec<u64>),
Long(Vec<i64>),
Float(Vec<f32>),
Double(Vec<f64>),
}Variants
Bit(Vec<bool>)
UnsignedChar(Vec<u8>)
Char(Vec<i8>)
UnsignedShort(Vec<u16>)
Short(Vec<i16>)
UnsignedInt(Vec<u32>)
Int(Vec<i32>)
UnsignedLong(Vec<u64>)
Long(Vec<i64>)
Float(Vec<f32>)
Double(Vec<f64>)
Trait Implementations
sourceimpl PartialOrd<Data1D> for Data1D
impl PartialOrd<Data1D> for Data1D
sourcefn partial_cmp(&self, other: &Data1D) -> Option<Ordering>
fn partial_cmp(&self, other: &Data1D) -> 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 Data1D
Auto Trait Implementations
impl RefUnwindSafe for Data1D
impl Send for Data1D
impl Sync for Data1D
impl Unpin for Data1D
impl UnwindSafe for Data1D
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