pub struct CompoundField {
pub name: String,
pub byte_offset: u32,
pub dtype: DataType,
}Expand description
A field within a compound data type.
Fields§
§name: StringField name.
byte_offset: u32Byte offset of the field within the compound type.
dtype: DataTypeData type of the field.
Trait Implementations§
Source§impl Clone for CompoundField
impl Clone for CompoundField
Source§fn clone(&self) -> CompoundField
fn clone(&self) -> CompoundField
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 moreAuto Trait Implementations§
impl Freeze for CompoundField
impl RefUnwindSafe for CompoundField
impl Send for CompoundField
impl Sync for CompoundField
impl Unpin for CompoundField
impl UnsafeUnpin for CompoundField
impl UnwindSafe for CompoundField
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