pub struct NotYetImplemented { /* private fields */ }Expand description
Error for a command that is planned but not yet implemented in the current slice.
The walking skeleton wires every subcommand through core so the cli → core
boundary is real from the start; each command returns this until its slice
lands. Keeping it a typed error (rather than anyhow) lets core stay free
of the error-reporting crate, which belongs at the CLI edge.
Implementations§
Trait Implementations§
Source§impl Debug for NotYetImplemented
impl Debug for NotYetImplemented
Source§impl Display for NotYetImplemented
impl Display for NotYetImplemented
Source§impl Error for NotYetImplemented
impl Error for NotYetImplemented
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 NotYetImplemented
impl RefUnwindSafe for NotYetImplemented
impl Send for NotYetImplemented
impl Sync for NotYetImplemented
impl Unpin for NotYetImplemented
impl UnwindSafe for NotYetImplemented
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