pub struct FieldModificationContext {
pub relationship_type: Option<String>,
pub end_node: Option<String>,
pub exception_category: Option<String>,
}Expand description
Context information for a field modification, if available.
Fields§
§relationship_type: Option<String>The type of relationship, if applicable.
end_node: Option<String>The end node of the relationship, if applicable.
exception_category: Option<String>The exception category, if applicable.
Trait Implementations§
Source§impl Clone for FieldModificationContext
impl Clone for FieldModificationContext
Source§fn clone(&self) -> FieldModificationContext
fn clone(&self) -> FieldModificationContext
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 FieldModificationContext
impl Debug for FieldModificationContext
Source§impl<'de> Deserialize<'de> for FieldModificationContext
impl<'de> Deserialize<'de> for FieldModificationContext
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 FieldModificationContext
impl PartialEq for FieldModificationContext
Source§fn eq(&self, other: &FieldModificationContext) -> bool
fn eq(&self, other: &FieldModificationContext) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FieldModificationContext
impl Serialize for FieldModificationContext
impl StructuralPartialEq for FieldModificationContext
Auto Trait Implementations§
impl Freeze for FieldModificationContext
impl RefUnwindSafe for FieldModificationContext
impl Send for FieldModificationContext
impl Sync for FieldModificationContext
impl Unpin for FieldModificationContext
impl UnsafeUnpin for FieldModificationContext
impl UnwindSafe for FieldModificationContext
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