pub struct DistMatrix {
pub labels: Vec<String>,
pub data: Vec<Vec<f64>>,
}Expand description
A distance matrix for phylogenetic reconstruction.
Fields§
§labels: Vec<String>§data: Vec<Vec<f64>>Implementations§
Trait Implementations§
Source§impl Clone for DistMatrix
impl Clone for DistMatrix
Source§fn clone(&self) -> DistMatrix
fn clone(&self) -> DistMatrix
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 moreAuto Trait Implementations§
impl Freeze for DistMatrix
impl RefUnwindSafe for DistMatrix
impl Send for DistMatrix
impl Sync for DistMatrix
impl Unpin for DistMatrix
impl UnsafeUnpin for DistMatrix
impl UnwindSafe for DistMatrix
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