pub struct GraphRelationship {
pub id: String,
pub rel_type: String,
pub start_node_id: String,
pub end_node_id: String,
pub properties: Value,
}Expand description
图关系
Fields§
§id: String§rel_type: String§start_node_id: String§end_node_id: String§properties: ValueTrait 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
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