pub enum LibraryItemType {
Module(Path),
Class(Path),
Interface(Path),
}Variants§
Trait Implementations§
Source§impl Clone for LibraryItemType
impl Clone for LibraryItemType
Source§fn clone(&self) -> LibraryItemType
fn clone(&self) -> LibraryItemType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LibraryItemType
impl Debug for LibraryItemType
Source§impl Parse for LibraryItemType
impl Parse for LibraryItemType
fn parse(input: ParseStream<'_>) -> Result<Self>
Auto Trait Implementations§
impl Freeze for LibraryItemType
impl RefUnwindSafe for LibraryItemType
impl !Send for LibraryItemType
impl !Sync for LibraryItemType
impl Unpin for LibraryItemType
impl UnsafeUnpin for LibraryItemType
impl UnwindSafe for LibraryItemType
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