pub struct Stmt {
pub id: NodeId,
pub kind: StmtKind,
pub span: Span,
}
Expand description
A statement
Fields§
§id: NodeId
§kind: StmtKind
§span: Span
Implementations§
source§impl Stmt
impl Stmt
pub fn has_trailing_semicolon(&self) -> bool
sourcepub fn add_trailing_semicolon(self) -> Self
pub fn add_trailing_semicolon(self) -> Self
Converts a parsed Stmt
to a Stmt
with
a trailing semicolon.
This only modifies the parsed AST struct, not the attached
LazyAttrTokenStream
. The parser is responsible for calling
ToAttrTokenStream::add_trailing_semi
when there is actually
a semicolon in the tokenstream.
pub fn is_item(&self) -> bool
pub fn is_expr(&self) -> bool
Trait Implementations§
source§impl HasAttrs for Stmt
impl HasAttrs for Stmt
source§const SUPPORTS_CUSTOM_INNER_ATTRS: bool = true
const SUPPORTS_CUSTOM_INNER_ATTRS: bool = true
This is
true
if this HasAttrs
might support ‘custom’ (proc-macro) inner
attributes. Attributes like #![cfg]
and #![cfg_attr]
are not
considered ‘custom’ attributes. Read morefn attrs(&self) -> &[Attribute]
fn visit_attrs(&mut self, f: impl FnOnce(&mut AttrVec))
source§impl HasTokens for Stmt
impl HasTokens for Stmt
fn tokens(&self) -> Option<&LazyAttrTokenStream>
fn tokens_mut(&mut self) -> Option<&mut Option<LazyAttrTokenStream>>
Auto Trait Implementations§
impl !RefUnwindSafe for Stmt
impl !Send for Stmt
impl !Sync for Stmt
impl Unpin for Stmt
impl !UnwindSafe for Stmt
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
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes