pub struct BipartiteProjectionSize {
pub vcount1: u32,
pub ecount1: u32,
pub vcount2: u32,
pub ecount2: u32,
}Expand description
Sizes of both bipartite projections.
Fields§
§vcount1: u32Number of vertices in the projection of type-0 (false) vertices.
ecount1: u32Number of edges in the projection of type-0 (false) vertices.
vcount2: u32Number of vertices in the projection of type-1 (true) vertices.
ecount2: u32Number of edges in the projection of type-1 (true) vertices.
Trait Implementations§
Source§impl Clone for BipartiteProjectionSize
impl Clone for BipartiteProjectionSize
Source§fn clone(&self) -> BipartiteProjectionSize
fn clone(&self) -> BipartiteProjectionSize
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 BipartiteProjectionSize
impl Debug for BipartiteProjectionSize
Source§impl PartialEq for BipartiteProjectionSize
impl PartialEq for BipartiteProjectionSize
impl Copy for BipartiteProjectionSize
impl Eq for BipartiteProjectionSize
impl StructuralPartialEq for BipartiteProjectionSize
Auto Trait Implementations§
impl Freeze for BipartiteProjectionSize
impl RefUnwindSafe for BipartiteProjectionSize
impl Send for BipartiteProjectionSize
impl Sync for BipartiteProjectionSize
impl Unpin for BipartiteProjectionSize
impl UnsafeUnpin for BipartiteProjectionSize
impl UnwindSafe for BipartiteProjectionSize
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