pub enum LibraryError {
Show 14 variants
AlreadyExists,
DirectoryNotFound,
PermissionDenied,
NotADirectory,
ProjectNotFound,
InvalidPath,
CloneFailed {
source: ProgramError,
},
InvalidProjectName,
NameIsEmpty,
IllegalCharacter,
IllegalName,
WindowsReservedName,
CustomError(String),
IoError {
source: Error,
},
}Expand description
Represents errors that can occur in the Library operations.
Variants§
AlreadyExists
DirectoryNotFound
PermissionDenied
NotADirectory
ProjectNotFound
InvalidPath
CloneFailed
Fields
§
source: ProgramErrorInvalidProjectName
NameIsEmpty
IllegalCharacter
IllegalName
WindowsReservedName
CustomError(String)
IoError
Trait Implementations§
Source§impl Debug for LibraryError
impl Debug for LibraryError
Source§impl Display for LibraryError
impl Display for LibraryError
Source§impl Error for LibraryError
impl Error for LibraryError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl !RefUnwindSafe for LibraryError
impl !UnwindSafe for LibraryError
impl Freeze for LibraryError
impl Send for LibraryError
impl Sync for LibraryError
impl Unpin for LibraryError
impl UnsafeUnpin for LibraryError
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
Source§impl<E> ExternalError for E
impl<E> ExternalError for E
fn into_lua_err(self) -> Error
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more