pub struct TraversalNode {
pub entity_id: i64,
pub entity_type: String,
pub depth: u32,
}Expand description
Node with depth information for traversal results
Fields§
§entity_id: i64§entity_type: String§depth: u32Trait Implementations§
Source§impl Clone for TraversalNode
impl Clone for TraversalNode
Source§fn clone(&self) -> TraversalNode
fn clone(&self) -> TraversalNode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for TraversalNode
impl RefUnwindSafe for TraversalNode
impl Send for TraversalNode
impl Sync for TraversalNode
impl Unpin for TraversalNode
impl UnsafeUnpin for TraversalNode
impl UnwindSafe for TraversalNode
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