pub struct Unitary {
pub height: usize,
pub width: usize,
/* private fields */
}
Expand description
A representation of a Unitary Matrix
Fields§
§height: usize
The number of rows in the matrix
width: usize
The number of columns in the matrix
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Unitary
impl Send for Unitary
impl Sync for Unitary
impl Unpin for Unitary
impl UnwindSafe for Unitary
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