#[repr(C)]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§
Source§impl Clone for FDBFieldData
impl Clone for FDBFieldData
Source§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 moreSource§impl Debug for FDBFieldData
impl Debug for FDBFieldData
Source§impl PartialEq for FDBFieldData
impl PartialEq for FDBFieldData
Source§impl TryFrom<FDBFieldData> for FDBFieldValue
impl TryFrom<FDBFieldData> for FDBFieldValue
Source§type Error = UnknownValueType
type Error = UnknownValueType
The type returned in the event of a conversion error.
impl Copy for FDBFieldData
impl Eq for FDBFieldData
impl Pod for FDBFieldData
impl StructuralPartialEq for FDBFieldData
Auto Trait Implementations§
impl Freeze for FDBFieldData
impl RefUnwindSafe for FDBFieldData
impl Send for FDBFieldData
impl Sync for FDBFieldData
impl Unpin for FDBFieldData
impl UnwindSafe for FDBFieldData
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
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§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
.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self
.