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