pub struct U<'a> {
pub range: &'a str,
pub keyword: UToken<'a>,
pub lparen: LeftParensToken<'a>,
pub num: AbsNumber<'a>,
pub rparen: RightParensToken<'a>,
}
Fields§
§range: &'a str
§keyword: UToken<'a>
§lparen: LeftParensToken<'a>
§num: AbsNumber<'a>
§rparen: RightParensToken<'a>
Implementations§
Source§impl<'a> U<'a>
impl<'a> U<'a>
pub fn new( keyword: UToken<'a>, lparen: LeftParensToken<'a>, num: AbsNumber<'a>, rparen: RightParensToken<'a>, ) -> U<'a>
Trait Implementations§
Source§impl<'a> Graph<'a> for U<'a>
impl<'a> Graph<'a> for U<'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 U<'a>
Auto Trait Implementations§
impl<'a> Freeze for U<'a>
impl<'a> !RefUnwindSafe for U<'a>
impl<'a> !Send for U<'a>
impl<'a> !Sync for U<'a>
impl<'a> Unpin for U<'a>
impl<'a> !UnwindSafe for U<'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