pub struct ProductObj {
pub param: String,
pub start: Box<Obj>,
pub end: Box<Obj>,
pub body: Box<Obj>,
}Fields§
§param: String§start: Box<Obj>§end: Box<Obj>§body: Box<Obj>Implementations§
Source§impl ProductObj
impl ProductObj
pub fn to_latex_string(&self) -> String
Trait Implementations§
Source§impl Clone for ProductObj
impl Clone for ProductObj
Source§fn clone(&self) -> ProductObj
fn clone(&self) -> ProductObj
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 moreSource§impl Display for ProductObj
impl Display for ProductObj
Source§impl From<ProductObj> for Obj
impl From<ProductObj> for Obj
Source§fn from(p: ProductObj) -> Self
fn from(p: ProductObj) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ProductObj
impl RefUnwindSafe for ProductObj
impl !Send for ProductObj
impl !Sync for ProductObj
impl Unpin for ProductObj
impl UnsafeUnpin for ProductObj
impl UnwindSafe for ProductObj
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