Enum rustc_ast::ast::MacStmtStyle
source · [−]pub enum MacStmtStyle {
Semicolon,
Braces,
NoBraces,
}
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
sourceimpl Clone for MacStmtStyle
impl Clone for MacStmtStyle
sourcefn clone(&self) -> MacStmtStyle
fn clone(&self) -> MacStmtStyle
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for MacStmtStyle
impl Debug for MacStmtStyle
sourceimpl<__D: Decoder> Decodable<__D> for MacStmtStyle
impl<__D: Decoder> Decodable<__D> for MacStmtStyle
sourceimpl PartialEq<MacStmtStyle> for MacStmtStyle
impl PartialEq<MacStmtStyle> for MacStmtStyle
sourcefn eq(&self, other: &MacStmtStyle) -> bool
fn eq(&self, other: &MacStmtStyle) -> bool
impl Copy for MacStmtStyle
impl StructuralPartialEq for MacStmtStyle
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
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