Struct assembly_fdb::file::FDBFieldData
pub struct FDBFieldData {
pub data_type: u32,
pub value: [u8; 4],
}
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§
§impl Clone for FDBFieldData
impl Clone for FDBFieldData
§fn clone(&self) -> FDBFieldData
fn clone(&self) -> FDBFieldData
Returns a copy 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 more§impl Debug for FDBFieldData
impl Debug for FDBFieldData
§impl PartialEq<FDBFieldData> for FDBFieldData
impl PartialEq<FDBFieldData> for FDBFieldData
§fn eq(&self, other: &FDBFieldData) -> bool
fn eq(&self, other: &FDBFieldData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl TryFrom<FDBFieldData> for Value<FileContext>
impl TryFrom<FDBFieldData> for Value<FileContext>
§type Error = UnknownValueType
type Error = UnknownValueType
The type returned in the event of a conversion error.
§fn try_from(
value: FDBFieldData
) -> Result<Value<FileContext>, <Value<FileContext> as TryFrom<FDBFieldData>>::Error>
fn try_from( value: FDBFieldData ) -> Result<Value<FileContext>, <Value<FileContext> as TryFrom<FDBFieldData>>::Error>
Performs the conversion.