pub struct LineOpList<'a> {
pub range: &'a str,
pub lineop: LineOp<'a>,
pub comma: CommaToken<'a>,
pub list: LineOps<'a>,
}
Fields§
§range: &'a str
§lineop: LineOp<'a>
§comma: CommaToken<'a>
§list: LineOps<'a>
Implementations§
Source§impl<'a> LineOpList<'a>
impl<'a> LineOpList<'a>
pub fn new( lineop: LineOp<'a>, comma: CommaToken<'a>, list: LineOps<'a>, ) -> LineOpList<'a>
Trait Implementations§
Source§impl<'a> Graph<'a> for LineOpList<'a>
impl<'a> Graph<'a> for LineOpList<'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> LineOpsAlt<'a> for LineOpList<'a>
Auto Trait Implementations§
impl<'a> Freeze for LineOpList<'a>
impl<'a> !RefUnwindSafe for LineOpList<'a>
impl<'a> !Send for LineOpList<'a>
impl<'a> !Sync for LineOpList<'a>
impl<'a> Unpin for LineOpList<'a>
impl<'a> !UnwindSafe for LineOpList<'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