pub struct Concat<'a> {
pub range: &'a str,
pub str1: String_<'a>,
pub op: PlusToken<'a>,
pub str2: String_<'a>,
}
Fields§
§range: &'a str
§str1: String_<'a>
§op: PlusToken<'a>
§str2: String_<'a>
Implementations§
Trait Implementations§
Source§impl<'a> Graph<'a> for Concat<'a>
impl<'a> Graph<'a> for Concat<'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> StringAlt<'a> for Concat<'a>
Auto Trait Implementations§
impl<'a> Freeze for Concat<'a>
impl<'a> !RefUnwindSafe for Concat<'a>
impl<'a> !Send for Concat<'a>
impl<'a> !Sync for Concat<'a>
impl<'a> Unpin for Concat<'a>
impl<'a> !UnwindSafe for Concat<'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