pub struct LineOp<'a> {
pub range: &'a str,
pub slo: SingleLineOp<'a>,
}
Fields§
§range: &'a str
§slo: SingleLineOp<'a>
Implementations§
Trait Implementations§
Source§impl<'a> Graph<'a> for LineOp<'a>
impl<'a> Graph<'a> for LineOp<'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 LineOp<'a>
Auto Trait Implementations§
impl<'a> Freeze for LineOp<'a>
impl<'a> !RefUnwindSafe for LineOp<'a>
impl<'a> !Send for LineOp<'a>
impl<'a> !Sync for LineOp<'a>
impl<'a> Unpin for LineOp<'a>
impl<'a> !UnwindSafe for LineOp<'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