pub struct MathEnvironment {
pub begin: BeginEnvironment,
pub name: MathEnvironmentName,
pub environment_comment: Option<SameLineComment>,
pub body: Vec<MathToken>,
pub end: EndEnvironment,
}
Fields§
§begin: BeginEnvironment
§name: MathEnvironmentName
§environment_comment: Option<SameLineComment>
§body: Vec<MathToken>
§end: EndEnvironment
Implementations§
Trait Implementations§
Source§impl Clone for MathEnvironment
impl Clone for MathEnvironment
Source§fn clone(&self) -> MathEnvironment
fn clone(&self) -> MathEnvironment
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 Debug for MathEnvironment
impl Debug for MathEnvironment
Auto Trait Implementations§
impl Freeze for MathEnvironment
impl RefUnwindSafe for MathEnvironment
impl Send for MathEnvironment
impl Sync for MathEnvironment
impl Unpin for MathEnvironment
impl UnwindSafe for MathEnvironment
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