Enum syn::MacStmtStyle
[−]
[src]
pub enum MacStmtStyle { Semicolon, Braces, NoBraces, }
How a macro was invoked.
Variants
Semicolon
The macro statement had a trailing semicolon, e.g. foo! { ... };
foo!(...);
, foo![...];
Braces
The macro statement had braces; e.g. foo! { ... }
NoBraces
The macro statement had parentheses or brackets and no semicolon; e.g.
foo!(...)
. All of these will end up being converted into macro
expressions.
Trait Implementations
impl Debug for MacStmtStyle
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Copy for MacStmtStyle
[src]
impl Clone for MacStmtStyle
[src]
fn clone(&self) -> MacStmtStyle
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Eq for MacStmtStyle
[src]
impl PartialEq for MacStmtStyle
[src]
fn eq(&self, __arg_0: &MacStmtStyle) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.