pub enum AssociatedItem {
AssociatedFn(FnDeclTok),
AssociatedMethod(MethodDeclToken),
}
Expand description
Enum that contans all the Associated Items supported by the parser.
Reference https://doc.rust-lang.org/stable/reference/items/associated-items.html
Variants§
AssociatedFn(FnDeclTok)
AssociatedMethod(MethodDeclToken)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AssociatedItem
impl RefUnwindSafe for AssociatedItem
impl !Send for AssociatedItem
impl !Sync for AssociatedItem
impl Unpin for AssociatedItem
impl UnwindSafe for AssociatedItem
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