pub struct CatalogSummary {
pub role_count: usize,
pub label_count: usize,
pub relation_type_count: usize,
pub property_key_count: usize,
pub projection_count: usize,
pub index_count: usize,
}Expand description
Fields§
§role_count: usizeRole count.
label_count: usizeLabel count.
relation_type_count: usizeRelation type count.
property_key_count: usizeProperty key count.
projection_count: usizeProjection count.
index_count: usizeIndex count.
Implementations§
Source§impl CatalogSummary
impl CatalogSummary
Sourcepub fn from_catalog(catalog: &Catalog) -> Self
pub fn from_catalog(catalog: &Catalog) -> Self
Trait Implementations§
Source§impl Clone for CatalogSummary
impl Clone for CatalogSummary
Source§fn clone(&self) -> CatalogSummary
fn clone(&self) -> CatalogSummary
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 CatalogSummary
impl Debug for CatalogSummary
Source§impl PartialEq for CatalogSummary
impl PartialEq for CatalogSummary
Source§fn eq(&self, other: &CatalogSummary) -> bool
fn eq(&self, other: &CatalogSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CatalogSummary
impl Eq for CatalogSummary
impl StructuralPartialEq for CatalogSummary
Auto Trait Implementations§
impl Freeze for CatalogSummary
impl RefUnwindSafe for CatalogSummary
impl Send for CatalogSummary
impl Sync for CatalogSummary
impl Unpin for CatalogSummary
impl UnsafeUnpin for CatalogSummary
impl UnwindSafe for CatalogSummary
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