pub struct CountLineOp<'a> {
pub range: &'a str,
pub line: Number<'a>,
pub sharp: SharpToken<'a>,
pub count: Number<'a>,
}
Fields§
§range: &'a str
§line: Number<'a>
§sharp: SharpToken<'a>
§count: Number<'a>
Implementations§
Source§impl<'a> CountLineOp<'a>
impl<'a> CountLineOp<'a>
pub fn new( line: Number<'a>, sharp: SharpToken<'a>, count: Number<'a>, ) -> CountLineOp<'a>
Trait Implementations§
Source§impl<'a> Graph<'a> for CountLineOp<'a>
impl<'a> Graph<'a> for CountLineOp<'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> SingleLineOpAlt<'a> for CountLineOp<'a>
Auto Trait Implementations§
impl<'a> Freeze for CountLineOp<'a>
impl<'a> !RefUnwindSafe for CountLineOp<'a>
impl<'a> !Send for CountLineOp<'a>
impl<'a> !Sync for CountLineOp<'a>
impl<'a> Unpin for CountLineOp<'a>
impl<'a> !UnwindSafe for CountLineOp<'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