pub struct PureMacro {
pub path: String,
pub delimiter: MacroDelimiter,
pub tokens: String,
}Expand description
A macro invocation at item level.
Fields§
§path: StringMacro path.
delimiter: MacroDelimiterDelimiter used.
tokens: StringTokens inside (as string).
Trait Implementations§
impl Eq for PureMacro
impl StructuralPartialEq for PureMacro
Auto Trait Implementations§
impl Freeze for PureMacro
impl RefUnwindSafe for PureMacro
impl Send for PureMacro
impl Sync for PureMacro
impl Unpin for PureMacro
impl UnsafeUnpin for PureMacro
impl UnwindSafe for PureMacro
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more