pub struct GraphRelationshipView {
pub source_node_id: String,
pub target_node_id: String,
pub relationship_type: String,
pub explanation: RelationExplanation,
}Fields§
§source_node_id: String§target_node_id: String§relationship_type: String§explanation: RelationExplanationTrait Implementations§
Source§impl Clone for GraphRelationshipView
impl Clone for GraphRelationshipView
Source§fn clone(&self) -> GraphRelationshipView
fn clone(&self) -> GraphRelationshipView
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 GraphRelationshipView
impl Debug for GraphRelationshipView
impl Eq for GraphRelationshipView
Source§impl PartialEq for GraphRelationshipView
impl PartialEq for GraphRelationshipView
impl StructuralPartialEq for GraphRelationshipView
Auto Trait Implementations§
impl Freeze for GraphRelationshipView
impl RefUnwindSafe for GraphRelationshipView
impl Send for GraphRelationshipView
impl Sync for GraphRelationshipView
impl Unpin for GraphRelationshipView
impl UnsafeUnpin for GraphRelationshipView
impl UnwindSafe for GraphRelationshipView
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