pub struct BinOpNumber<'a> {
pub range: &'a str,
pub num1: Number<'a>,
pub op: BinMathOp<'a>,
pub num2: Number<'a>,
}
Fields§
§range: &'a str
§num1: Number<'a>
§op: BinMathOp<'a>
§num2: Number<'a>
Implementations§
Source§impl<'a> BinOpNumber<'a>
impl<'a> BinOpNumber<'a>
Trait Implementations§
Source§impl<'a> Graph<'a> for BinOpNumber<'a>
impl<'a> Graph<'a> for BinOpNumber<'a>
Source§fn to_dot_recurse(&self) -> String
fn to_dot_recurse(&self) -> String
Generates arrows for each children and returns the concatenation of the
call to
to_dot
on them. Read moreimpl<'a> NumberAlt<'a> for BinOpNumber<'a>
Auto Trait Implementations§
impl<'a> Freeze for BinOpNumber<'a>
impl<'a> !RefUnwindSafe for BinOpNumber<'a>
impl<'a> !Send for BinOpNumber<'a>
impl<'a> !Sync for BinOpNumber<'a>
impl<'a> Unpin for BinOpNumber<'a>
impl<'a> !UnwindSafe for BinOpNumber<'a>
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