pub enum NewError {
IoError(Error),
GitNotFound,
ProjectExists(String),
CloneFailed(String),
InvalidName(String),
}Expand description
Errors that can occur during project creation
Variants§
IoError(Error)
IO error occurred
GitNotFound
Git command not found
ProjectExists(String)
Project already exists
CloneFailed(String)
Git clone failed
InvalidName(String)
Invalid project name
Trait Implementations§
Source§impl Error for NewError
impl Error for NewError
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 Freeze for NewError
impl !RefUnwindSafe for NewError
impl Send for NewError
impl Sync for NewError
impl Unpin for NewError
impl UnsafeUnpin for NewError
impl !UnwindSafe for NewError
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