pub enum VectorField {
Null,
BoolVector(Vec<bool>),
UInt8Vector(Vec<u8>),
UInt16Vector(Vec<u16>),
UInt32Vector(Vec<u32>),
UInt64Vector(Vec<u64>),
Int8Vector(Vec<i8>),
Int16Vector(Vec<i16>),
Int32Vector(Vec<i32>),
Int64Vector(Vec<i64>),
UInt8VectorVector(Vec<Vec<u8>>),
}Variants§
Null
A null vector is one that does not exist.
BoolVector(Vec<bool>)
UInt8Vector(Vec<u8>)
UInt16Vector(Vec<u16>)
UInt32Vector(Vec<u32>)
UInt64Vector(Vec<u64>)
Int8Vector(Vec<i8>)
Int16Vector(Vec<i16>)
Int32Vector(Vec<i32>)
Int64Vector(Vec<i64>)
UInt8VectorVector(Vec<Vec<u8>>)
Auto Trait Implementations§
impl Freeze for VectorField
impl RefUnwindSafe for VectorField
impl Send for VectorField
impl Sync for VectorField
impl Unpin for VectorField
impl UnsafeUnpin for VectorField
impl UnwindSafe for VectorField
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