pub struct RelationshipCount {
pub relationship: String,
pub count: usize,
}Expand description
Relationship type with count.
Fields§
§relationship: StringThe relationship name.
count: usizeNumber of edges with this relationship.
Trait Implementations§
Source§impl Clone for RelationshipCount
impl Clone for RelationshipCount
Source§fn clone(&self) -> RelationshipCount
fn clone(&self) -> RelationshipCount
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 RelationshipCount
impl Debug for RelationshipCount
Source§impl<'de> Deserialize<'de> for RelationshipCount
impl<'de> Deserialize<'de> for RelationshipCount
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 RelationshipCount
impl RefUnwindSafe for RelationshipCount
impl Send for RelationshipCount
impl Sync for RelationshipCount
impl Unpin for RelationshipCount
impl UnsafeUnpin for RelationshipCount
impl UnwindSafe for RelationshipCount
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