pub struct FieldModification {
pub type: String,
pub id: String,
pub attributes: FieldModificationAttributes,
}Expand description
Represents a field modification record as returned by the GLEIF API.
Fields§
§type: StringThe type of the data (e.g., “fieldModifications”).
id: StringThe unique identifier of the field modification.
attributes: FieldModificationAttributesThe attributes of the field modification.
Trait Implementations§
Source§impl Clone for FieldModification
impl Clone for FieldModification
Source§fn clone(&self) -> FieldModification
fn clone(&self) -> FieldModification
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FieldModification
impl Debug for FieldModification
Source§impl<'de> Deserialize<'de> for FieldModification
impl<'de> Deserialize<'de> for FieldModification
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
Source§impl PartialEq for FieldModification
impl PartialEq for FieldModification
Source§fn eq(&self, other: &FieldModification) -> bool
fn eq(&self, other: &FieldModification) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FieldModification
impl Serialize for FieldModification
impl StructuralPartialEq for FieldModification
Auto Trait Implementations§
impl Freeze for FieldModification
impl RefUnwindSafe for FieldModification
impl Send for FieldModification
impl Sync for FieldModification
impl Unpin for FieldModification
impl UnsafeUnpin for FieldModification
impl UnwindSafe for FieldModification
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