pub struct NodeTypeDistribution {
pub counts: HashMap<String, usize>,
pub percentages: HashMap<String, f32>,
}Fields§
§counts: HashMap<String, usize>§percentages: HashMap<String, f32>Trait Implementations§
Source§impl Clone for NodeTypeDistribution
impl Clone for NodeTypeDistribution
Source§fn clone(&self) -> NodeTypeDistribution
fn clone(&self) -> NodeTypeDistribution
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 NodeTypeDistribution
impl Debug for NodeTypeDistribution
Source§impl Default for NodeTypeDistribution
impl Default for NodeTypeDistribution
Source§fn default() -> NodeTypeDistribution
fn default() -> NodeTypeDistribution
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodeTypeDistribution
impl<'de> Deserialize<'de> for NodeTypeDistribution
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<NodeTypeDistribution, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<NodeTypeDistribution, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for NodeTypeDistribution
impl Serialize for NodeTypeDistribution
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for NodeTypeDistribution
impl RefUnwindSafe for NodeTypeDistribution
impl Send for NodeTypeDistribution
impl Sync for NodeTypeDistribution
impl Unpin for NodeTypeDistribution
impl UnsafeUnpin for NodeTypeDistribution
impl UnwindSafe for NodeTypeDistribution
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