Enum rustc_ap_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
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
type Output = T
type Output = T
Should always be Self
pub fn vzip(self) -> V