pub enum BinCellValue {
Logical(Vec<bool>),
Bytes(Vec<u8>),
I16(Vec<i16>),
I32(Vec<i32>),
I64(Vec<i64>),
F32(Vec<f32>),
F64(Vec<f64>),
String(String),
ComplexF32(Vec<(f32, f32)>),
ComplexF64(Vec<(f64, f64)>),
Bits(Vec<u8>, usize),
}Expand description
Cell value from a binary table.
Variants§
Logical(Vec<bool>)
Bytes(Vec<u8>)
I16(Vec<i16>)
I32(Vec<i32>)
I64(Vec<i64>)
F32(Vec<f32>)
F64(Vec<f64>)
String(String)
ComplexF32(Vec<(f32, f32)>)
ComplexF64(Vec<(f64, f64)>)
Bits(Vec<u8>, usize)
Trait Implementations§
Source§impl Clone for BinCellValue
impl Clone for BinCellValue
Source§fn clone(&self) -> BinCellValue
fn clone(&self) -> BinCellValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BinCellValue
impl RefUnwindSafe for BinCellValue
impl Send for BinCellValue
impl Sync for BinCellValue
impl Unpin for BinCellValue
impl UnsafeUnpin for BinCellValue
impl UnwindSafe for BinCellValue
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