pub struct GetGraphRelationshipsResult {
pub root: GraphNodeView,
pub neighbors: Vec<GraphNodeView>,
pub relationships: Vec<GraphRelationshipView>,
pub observed_at: SystemTime,
}Fields§
§root: GraphNodeView§neighbors: Vec<GraphNodeView>§relationships: Vec<GraphRelationshipView>§observed_at: SystemTimeTrait Implementations§
Source§impl Clone for GetGraphRelationshipsResult
impl Clone for GetGraphRelationshipsResult
Source§fn clone(&self) -> GetGraphRelationshipsResult
fn clone(&self) -> GetGraphRelationshipsResult
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 GetGraphRelationshipsResult
impl Debug for GetGraphRelationshipsResult
impl Eq for GetGraphRelationshipsResult
impl StructuralPartialEq for GetGraphRelationshipsResult
Auto Trait Implementations§
impl Freeze for GetGraphRelationshipsResult
impl RefUnwindSafe for GetGraphRelationshipsResult
impl Send for GetGraphRelationshipsResult
impl Sync for GetGraphRelationshipsResult
impl Unpin for GetGraphRelationshipsResult
impl UnsafeUnpin for GetGraphRelationshipsResult
impl UnwindSafe for GetGraphRelationshipsResult
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