pub struct LoopStatement {
pub loop_token: Loop,
pub ident: Option<Ident>,
pub brace_token: Brace,
pub statements: Vec<DfirStatement>,
pub semi_token: Semi,
}Fields§
§loop_token: Loop§ident: Option<Ident>§brace_token: Brace§statements: Vec<DfirStatement>§semi_token: SemiTrait Implementations§
Source§impl Parse for LoopStatement
impl Parse for LoopStatement
fn parse(input: ParseStream<'_>) -> Result<Self>
Source§impl ToTokens for LoopStatement
impl ToTokens for LoopStatement
Source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
Auto Trait Implementations§
impl Freeze for LoopStatement
impl RefUnwindSafe for LoopStatement
impl !Send for LoopStatement
impl !Sync for LoopStatement
impl Unpin for LoopStatement
impl UnsafeUnpin for LoopStatement
impl UnwindSafe for LoopStatement
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Spanned for Twhere
T: Spanned + ?Sized,
impl<T> Spanned for Twhere
T: Spanned + ?Sized,
Source§fn span(&self) -> Span
fn span(&self) -> Span
Returns a
Span covering the complete contents of this syntax tree
node, or Span::call_site() if this node is empty.