pub enum LangItemKind {
Interface(LangInterfaceItem),
Enum(LangEnumItem),
Fn(LangFnItem),
}Expand description
Classification of a lang-item name string. Returns None for
unrecognized strings.
Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for LangItemKind
impl RefUnwindSafe for LangItemKind
impl Send for LangItemKind
impl Sync for LangItemKind
impl Unpin for LangItemKind
impl UnsafeUnpin for LangItemKind
impl UnwindSafe for LangItemKind
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