pub struct BettiNumbers {
pub b0: usize,
pub b1: usize,
pub b2: usize,
}Expand description
Betti numbers at a given scale
Fields§
§b0: usizeβ_0: number of connected components
b1: usizeβ_1: number of 1-cycles (loops)
b2: usizeβ_2: number of 2-cycles (voids)
Implementations§
Trait Implementations§
Source§impl Clone for BettiNumbers
impl Clone for BettiNumbers
Source§fn clone(&self) -> BettiNumbers
fn clone(&self) -> BettiNumbers
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 BettiNumbers
impl Debug for BettiNumbers
Source§impl PartialEq for BettiNumbers
impl PartialEq for BettiNumbers
impl StructuralPartialEq for BettiNumbers
Auto Trait Implementations§
impl Freeze for BettiNumbers
impl RefUnwindSafe for BettiNumbers
impl Send for BettiNumbers
impl Sync for BettiNumbers
impl Unpin for BettiNumbers
impl UnwindSafe for BettiNumbers
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