pub struct MatCell {
pub name: String,
pub dims: Vec<usize>,
pub elements: Vec<MatValue>,
}Fields§
§name: String§dims: Vec<usize>§elements: Vec<MatValue>Trait Implementations§
Auto Trait Implementations§
impl Freeze for MatCell
impl RefUnwindSafe for MatCell
impl Send for MatCell
impl Sync for MatCell
impl Unpin for MatCell
impl UnwindSafe for MatCell
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