pub struct HypergraphStats {
pub num_entities: usize,
pub num_hyperedges: usize,
pub max_hyperedge_size: usize,
}Expand description
Statistics about the hypergraph
Fields§
§num_entities: usize§num_hyperedges: usize§max_hyperedge_size: usizeTrait Implementations§
Source§impl Clone for HypergraphStats
impl Clone for HypergraphStats
Source§fn clone(&self) -> HypergraphStats
fn clone(&self) -> HypergraphStats
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 HypergraphStats
impl Debug for HypergraphStats
Source§impl<'de> Deserialize<'de> for HypergraphStats
impl<'de> Deserialize<'de> for HypergraphStats
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 HypergraphStats
impl RefUnwindSafe for HypergraphStats
impl Send for HypergraphStats
impl Sync for HypergraphStats
impl Unpin for HypergraphStats
impl UnwindSafe for HypergraphStats
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