pub struct CellArray {
pub data: Vec<Value>,
pub shape: Vec<usize>,
pub rows: usize,
pub cols: usize,
}Fields§
§data: Vec<Value>§shape: Vec<usize>Full MATLAB-visible shape vector (column-major semantics).
rows: usizeCached row count for 2-D interop; equals shape[0] when present.
cols: usizeCached column count for 2-D interop; equals shape[1] when present, otherwise 1 (or 0 for empty).
Implementations§
Trait Implementations§
impl StructuralPartialEq for CellArray
Auto Trait Implementations§
impl !Send for CellArray
impl !Sync for CellArray
impl Freeze for CellArray
impl RefUnwindSafe for CellArray
impl Unpin for CellArray
impl UnsafeUnpin for CellArray
impl UnwindSafe for CellArray
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