pub struct ParsedAttribute {
pub name: String,
pub args: HashMap<String, Vec<TokenTree>>,
pub span: Span,
}Fields§
§name: String§args: HashMap<String, Vec<TokenTree>>§span: SpanImplementations§
Source§impl ParsedAttribute
impl ParsedAttribute
pub fn parse(token_iter: &mut TokenIter) -> Result<Self, ParseError>
Auto Trait Implementations§
impl Freeze for ParsedAttribute
impl RefUnwindSafe for ParsedAttribute
impl Send for ParsedAttribute
impl Sync for ParsedAttribute
impl Unpin for ParsedAttribute
impl UnsafeUnpin for ParsedAttribute
impl UnwindSafe for ParsedAttribute
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