pub struct GraphInfoResponse {
pub node_count: usize,
pub edge_count: usize,
pub categories: Vec<CategoryCount>,
pub relationships: Vec<RelationshipCount>,
}Expand description
Response for graph info query.
Fields§
§node_count: usizeTotal number of nodes.
edge_count: usizeTotal number of edges.
categories: Vec<CategoryCount>Categories with counts.
relationships: Vec<RelationshipCount>Relationship types with counts.
Trait Implementations§
Source§impl Clone for GraphInfoResponse
impl Clone for GraphInfoResponse
Source§fn clone(&self) -> GraphInfoResponse
fn clone(&self) -> GraphInfoResponse
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 GraphInfoResponse
impl Debug for GraphInfoResponse
Source§impl<'de> Deserialize<'de> for GraphInfoResponse
impl<'de> Deserialize<'de> for GraphInfoResponse
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 GraphInfoResponse
impl RefUnwindSafe for GraphInfoResponse
impl Send for GraphInfoResponse
impl Sync for GraphInfoResponse
impl Unpin for GraphInfoResponse
impl UnsafeUnpin for GraphInfoResponse
impl UnwindSafe for GraphInfoResponse
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