Struct syn::Block [−][src]
A braced block containing Rust statements.
This type is available if Syn is built with the "full" feature.
Fields
brace_token: Brace
stmts: Vec<Stmt>
Statements in a block
Methods
impl Block[src]
impl BlockTrait Implementations
impl Synom for Block[src]
impl Synom for Blockfn parse(i: Cursor) -> PResult<Self>[src]
fn parse(i: Cursor) -> PResult<Self>fn description() -> Option<&'static str>[src]
fn description() -> Option<&'static str>A short name of the type being parsed. Read more
impl ToTokens for Block[src]
impl ToTokens for Blockfn to_tokens(&self, tokens: &mut Tokens)[src]
fn to_tokens(&self, tokens: &mut Tokens)Write self to the given Tokens. Read more
fn into_tokens(self) -> Tokens[src]
fn into_tokens(self) -> TokensConvert self directly into a Tokens object. Read more
impl Clone for Block[src]
impl Clone for Block