pub struct GraphPathData {
pub hops: u32,
pub nodes: Vec<MemoryItem>,
pub edges: Vec<MemoryEdge>,
}Expand description
API response payload for graph path query.
Fields§
§hops: u32§nodes: Vec<MemoryItem>§edges: Vec<MemoryEdge>Trait Implementations§
Source§impl Clone for GraphPathData
impl Clone for GraphPathData
Source§fn clone(&self) -> GraphPathData
fn clone(&self) -> GraphPathData
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 moreSource§impl Debug for GraphPathData
impl Debug for GraphPathData
Source§impl<'de> Deserialize<'de> for GraphPathData
impl<'de> Deserialize<'de> for GraphPathData
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 GraphPathData
impl RefUnwindSafe for GraphPathData
impl Send for GraphPathData
impl Sync for GraphPathData
impl Unpin for GraphPathData
impl UnsafeUnpin for GraphPathData
impl UnwindSafe for GraphPathData
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