pub struct RecordFieldValue {
pub value_type: ValueType,
pub field_id: i32,
pub value: Value,
}Expand description
Represents a single field value within a record.
Fields§
§value_type: ValueType§field_id: i32§value: ValueTrait Implementations§
Source§impl Clone for RecordFieldValue
impl Clone for RecordFieldValue
Source§fn clone(&self) -> RecordFieldValue
fn clone(&self) -> RecordFieldValue
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 moreSource§impl Debug for RecordFieldValue
impl Debug for RecordFieldValue
Source§impl<'de> Deserialize<'de> for RecordFieldValue
impl<'de> Deserialize<'de> for RecordFieldValue
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RecordFieldValue
impl RefUnwindSafe for RecordFieldValue
impl Send for RecordFieldValue
impl Sync for RecordFieldValue
impl Unpin for RecordFieldValue
impl UnsafeUnpin for RecordFieldValue
impl UnwindSafe for RecordFieldValue
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