pub struct LevelMatrices {
pub level: usize,
pub num_clusters: usize,
pub matrices: Vec<Array2<Complex64>>,
}Expand description
Matrices at a single level of the tree
Fields§
§level: usizeLevel index
num_clusters: usizeNumber of clusters at this level
matrices: Vec<Array2<Complex64>>Matrices indexed by cluster
Trait Implementations§
Source§impl Clone for LevelMatrices
impl Clone for LevelMatrices
Source§fn clone(&self) -> LevelMatrices
fn clone(&self) -> LevelMatrices
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 LevelMatrices
impl RefUnwindSafe for LevelMatrices
impl Send for LevelMatrices
impl Sync for LevelMatrices
impl Unpin for LevelMatrices
impl UnwindSafe for LevelMatrices
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more