pub enum MathNode {
Apply(Apply),
Op(OpNode),
Constant(ConstantNode),
Root(Root),
Ci(Ci),
Cn(Cn),
Lambda(Lambda),
BVar(BVar),
Piecewise(Piecewise),
Piece(Piece),
Otherwise(Otherwise),
}
Variants§
Apply(Apply)
Op(OpNode)
Constant(ConstantNode)
Root(Root)
Ci(Ci)
Cn(Cn)
Lambda(Lambda)
BVar(BVar)
Piecewise(Piecewise)
Piece(Piece)
Otherwise(Otherwise)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MathNode
impl RefUnwindSafe for MathNode
impl Send for MathNode
impl Sync for MathNode
impl Unpin for MathNode
impl UnwindSafe for MathNode
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