pub enum CmdBuilderError {
UninitializedCmdName,
}Expand description
Enum returned from CmdBuilder::build method.
Variants§
UninitializedCmdName
The command name was not initialized.
Trait Implementations§
Source§impl Debug for CmdBuilderError
impl Debug for CmdBuilderError
Source§impl Display for CmdBuilderError
impl Display for CmdBuilderError
Source§impl Error for CmdBuilderError
impl Error for CmdBuilderError
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 CmdBuilderError
impl RefUnwindSafe for CmdBuilderError
impl Send for CmdBuilderError
impl Sync for CmdBuilderError
impl Unpin for CmdBuilderError
impl UnwindSafe for CmdBuilderError
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