pub struct SimplexEdge {
pub u: u32,
pub v: u32,
pub weight: f64,
}Expand description
Sparse edge in the filtration complex
Fields§
§u: u32§v: u32§weight: f64Trait Implementations§
Source§impl Clone for SimplexEdge
impl Clone for SimplexEdge
Source§fn clone(&self) -> SimplexEdge
fn clone(&self) -> SimplexEdge
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 SimplexEdge
impl Debug for SimplexEdge
impl Copy for SimplexEdge
Auto Trait Implementations§
impl Freeze for SimplexEdge
impl RefUnwindSafe for SimplexEdge
impl Send for SimplexEdge
impl Sync for SimplexEdge
impl Unpin for SimplexEdge
impl UnsafeUnpin for SimplexEdge
impl UnwindSafe for SimplexEdge
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