pub struct MatrixListObj {
pub rows: Vec<Vec<Box<Obj>>>,
}Fields§
§rows: Vec<Vec<Box<Obj>>>Implementations§
Source§impl MatrixListObj
impl MatrixListObj
pub fn to_latex_string(&self) -> String
Trait Implementations§
Source§impl Clone for MatrixListObj
impl Clone for MatrixListObj
Source§fn clone(&self) -> MatrixListObj
fn clone(&self) -> MatrixListObj
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Display for MatrixListObj
impl Display for MatrixListObj
Source§impl From<MatrixListObj> for Obj
impl From<MatrixListObj> for Obj
Source§fn from(v: MatrixListObj) -> Self
fn from(v: MatrixListObj) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MatrixListObj
impl RefUnwindSafe for MatrixListObj
impl !Send for MatrixListObj
impl !Sync for MatrixListObj
impl Unpin for MatrixListObj
impl UnsafeUnpin for MatrixListObj
impl UnwindSafe for MatrixListObj
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