Struct assembly_fdb_core::file::FDBFieldData
source · [−]Expand description
The type and value of a row field.
Fields
data_type: u32
The data type.
value: [u8; 4]
The bytes that specify the value.
Trait Implementations
sourceimpl Clone for FDBFieldData
impl Clone for FDBFieldData
sourcefn clone(&self) -> FDBFieldData
fn clone(&self) -> FDBFieldData
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for FDBFieldData
impl Debug for FDBFieldData
sourceimpl PartialEq<FDBFieldData> for FDBFieldData
impl PartialEq<FDBFieldData> for FDBFieldData
sourcefn eq(&self, other: &FDBFieldData) -> bool
fn eq(&self, other: &FDBFieldData) -> bool
sourceimpl TryFrom<FDBFieldData> for FDBFieldValue
impl TryFrom<FDBFieldData> for FDBFieldValue
type Error = UnknownValueType
type Error = UnknownValueType
The type returned in the event of a conversion error.
sourcefn try_from(value: FDBFieldData) -> Result<Self, Self::Error>
fn try_from(value: FDBFieldData) -> Result<Self, Self::Error>
Performs the conversion.
impl Copy for FDBFieldData
impl Eq for FDBFieldData
impl Pod for FDBFieldData
impl StructuralEq for FDBFieldData
impl StructuralPartialEq for FDBFieldData
Auto Trait Implementations
impl RefUnwindSafe for FDBFieldData
impl Send for FDBFieldData
impl Sync for FDBFieldData
impl Unpin for FDBFieldData
impl UnwindSafe for FDBFieldData
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
. Read more