pub enum ImportErrorKind {
ImportDisabled,
InvalidSpecifier,
NoBaseDir,
NotFound,
AccessDenied,
IoError,
NotExported,
CircularImport,
ParseFailed,
}Variants§
ImportDisabled
InvalidSpecifier
NoBaseDir
NotFound
AccessDenied
IoError
NotExported
CircularImport
ParseFailed
Trait Implementations§
Source§impl Clone for ImportErrorKind
impl Clone for ImportErrorKind
Source§fn clone(&self) -> ImportErrorKind
fn clone(&self) -> ImportErrorKind
Returns a duplicate of the value. Read more
1.0.0 · 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 ImportErrorKind
impl Debug for ImportErrorKind
Source§impl PartialEq for ImportErrorKind
impl PartialEq for ImportErrorKind
impl StructuralPartialEq for ImportErrorKind
Auto Trait Implementations§
impl Freeze for ImportErrorKind
impl RefUnwindSafe for ImportErrorKind
impl Send for ImportErrorKind
impl Sync for ImportErrorKind
impl Unpin for ImportErrorKind
impl UnwindSafe for ImportErrorKind
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