pub enum DecodedData {
None,
Text(String),
F32(Vec<f32>),
F64(Vec<f64>),
I16(Vec<i16>),
I32(Vec<i32>),
Opaque(Vec<u8>),
}Variants§
Trait Implementations§
Source§impl Clone for DecodedData
impl Clone for DecodedData
Source§fn clone(&self) -> DecodedData
fn clone(&self) -> DecodedData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DecodedData
impl Debug for DecodedData
Auto Trait Implementations§
impl Freeze for DecodedData
impl RefUnwindSafe for DecodedData
impl Send for DecodedData
impl Sync for DecodedData
impl Unpin for DecodedData
impl UnwindSafe for DecodedData
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