pub enum NewError {
InvalidName(String),
AlreadyExists(PathBuf),
Io {
path: PathBuf,
source: Error,
},
}Expand description
User-facing error from the new flow. Stringly-typed because the
CLI shows them to a human, not a downstream caller.
Variants§
Trait Implementations§
Source§impl Error for NewError
impl Error for NewError
1.30.0 · 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