Enum rustc_ast::ast::MacStmtStyle [−][src]
pub enum MacStmtStyle {
Semicolon,
Braces,
NoBraces,
}
Variants
The macro statement had a trailing semicolon (e.g., foo! { ... };
foo!(...);
, foo![...];
).
The macro statement had braces (e.g., foo! { ... }
).
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
Auto Trait Implementations
impl RefUnwindSafe for MacStmtStyle
impl Send for MacStmtStyle
impl Sync for MacStmtStyle
impl Unpin for MacStmtStyle
impl UnwindSafe for MacStmtStyle
Blanket Implementations
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: 1 byte
Size for each variant:
Semicolon
: 0 bytesBraces
: 0 bytesNoBraces
: 0 bytes