[][src]Struct rustc_ap_rustc_ast::ast::Stmt

pub struct Stmt {
    pub id: NodeId,
    pub kind: StmtKind,
    pub span: Span,
}

A statement

Fields

id: NodeIdkind: StmtKindspan: Span

Implementations

impl Stmt[src]

pub fn tokens(&self) -> Option<&LazyTokenStream>[src]

pub fn tokens_mut(&mut self) -> Option<&mut LazyTokenStream>[src]

pub fn set_tokens(&mut self, tokens: Option<LazyTokenStream>)[src]

pub fn has_trailing_semicolon(&self) -> bool[src]

pub fn add_trailing_semicolon(mut self: Self) -> Self[src]

Converts a parsed Stmt to a Stmt with a trailing semicolon.

This only modifies the parsed AST struct, not the attached LazyTokenStream. The parser is responsible for calling CreateTokenStream::add_trailing_semi when there is actually a semicolon in the tokenstream.

pub fn is_item(&self) -> bool[src]

pub fn is_expr(&self) -> bool[src]

Trait Implementations

impl Clone for Stmt[src]

impl Debug for Stmt[src]

impl<__D: Decoder> Decodable<__D> for Stmt[src]

impl<__E: Encoder> Encodable<__E> for Stmt[src]

impl HasAttrs for Stmt[src]

Auto Trait Implementations

impl !RefUnwindSafe for Stmt[src]

impl !Send for Stmt[src]

impl !Sync for Stmt[src]

impl Unpin for Stmt[src]

impl !UnwindSafe for Stmt[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<T> Erased for T[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,