pub struct CompoundFieldData {
pub name: String,
pub datatype: Datatype,
pub raw_data: Vec<u8>,
}Expand description
A single field extracted from compound data, containing the raw bytes for that field across all elements.
Fields§
§name: StringField name.
datatype: DatatypeDatatype of this field.
raw_data: Vec<u8>Raw bytes for this field across all elements (len = num_elements * field_type_size).
Trait Implementations§
Source§impl Clone for CompoundFieldData
impl Clone for CompoundFieldData
Source§fn clone(&self) -> CompoundFieldData
fn clone(&self) -> CompoundFieldData
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 CompoundFieldData
impl RefUnwindSafe for CompoundFieldData
impl Send for CompoundFieldData
impl Sync for CompoundFieldData
impl Unpin for CompoundFieldData
impl UnsafeUnpin for CompoundFieldData
impl UnwindSafe for CompoundFieldData
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