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