pub struct BinOpNumBoolean<'a> {
pub range: &'a str,
pub num1: Number<'a>,
pub op: BinNumBoolOpToken<'a>,
pub num2: Number<'a>,
}
Fields§
§range: &'a str
§num1: Number<'a>
§op: BinNumBoolOpToken<'a>
§num2: Number<'a>
Implementations§
Source§impl<'a> BinOpNumBoolean<'a>
impl<'a> BinOpNumBoolean<'a>
pub fn new( num1: Number<'a>, op: BinNumBoolOpToken<'a>, num2: Number<'a>, ) -> BinOpNumBoolean<'a>
Trait Implementations§
Source§impl<'a> Graph<'a> for BinOpNumBoolean<'a>
impl<'a> Graph<'a> for BinOpNumBoolean<'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> BoolAlt<'a> for BinOpNumBoolean<'a>
Auto Trait Implementations§
impl<'a> Freeze for BinOpNumBoolean<'a>
impl<'a> !RefUnwindSafe for BinOpNumBoolean<'a>
impl<'a> !Send for BinOpNumBoolean<'a>
impl<'a> !Sync for BinOpNumBoolean<'a>
impl<'a> Unpin for BinOpNumBoolean<'a>
impl<'a> !UnwindSafe for BinOpNumBoolean<'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