pub struct GraphHub {
pub id: String,
pub node_type: String,
pub title: String,
pub degree: usize,
}Expand description
A high-degree node for GraphStats.
Fields§
§id: StringNode id.
node_type: StringType string.
title: StringTitle.
degree: usizeDegree (in + out edge endpoints).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GraphHub
impl<'de> Deserialize<'de> for GraphHub
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 GraphHub
impl RefUnwindSafe for GraphHub
impl Send for GraphHub
impl Sync for GraphHub
impl Unpin for GraphHub
impl UnsafeUnpin for GraphHub
impl UnwindSafe for GraphHub
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