pub struct GraphRelationship {
pub id: String,
pub source_id: String,
pub target_id: String,
pub relationship_type: String,
pub properties: Props,
}Fields§
§id: String§source_id: String§target_id: String§relationship_type: String§properties: PropsTrait Implementations§
Source§impl Clone for GraphRelationship
impl Clone for GraphRelationship
Source§fn clone(&self) -> GraphRelationship
fn clone(&self) -> GraphRelationship
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 GraphRelationship
impl Debug for GraphRelationship
Source§impl<'de> Deserialize<'de> for GraphRelationship
impl<'de> Deserialize<'de> for GraphRelationship
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 GraphRelationship
impl PartialEq for GraphRelationship
Source§fn eq(&self, other: &GraphRelationship) -> bool
fn eq(&self, other: &GraphRelationship) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GraphRelationship
impl Serialize for GraphRelationship
impl StructuralPartialEq for GraphRelationship
Auto Trait Implementations§
impl Freeze for GraphRelationship
impl RefUnwindSafe for GraphRelationship
impl Send for GraphRelationship
impl Sync for GraphRelationship
impl Unpin for GraphRelationship
impl UnsafeUnpin for GraphRelationship
impl UnwindSafe for GraphRelationship
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