pub struct GraphPagedSubgraph {
pub nodes: Vec<GraphNode>,
pub edges: Vec<GraphEdge>,
pub page: GraphQueryPage,
}Fields§
§nodes: Vec<GraphNode>§edges: Vec<GraphEdge>§page: GraphQueryPageTrait Implementations§
Source§impl Clone for GraphPagedSubgraph
impl Clone for GraphPagedSubgraph
Source§fn clone(&self) -> GraphPagedSubgraph
fn clone(&self) -> GraphPagedSubgraph
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 GraphPagedSubgraph
impl Debug for GraphPagedSubgraph
Source§impl PartialEq for GraphPagedSubgraph
impl PartialEq for GraphPagedSubgraph
Source§fn eq(&self, other: &GraphPagedSubgraph) -> bool
fn eq(&self, other: &GraphPagedSubgraph) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for GraphPagedSubgraph
impl StructuralPartialEq for GraphPagedSubgraph
Auto Trait Implementations§
impl Freeze for GraphPagedSubgraph
impl RefUnwindSafe for GraphPagedSubgraph
impl Send for GraphPagedSubgraph
impl Sync for GraphPagedSubgraph
impl Unpin for GraphPagedSubgraph
impl UnsafeUnpin for GraphPagedSubgraph
impl UnwindSafe for GraphPagedSubgraph
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