pub enum ReleaseSetCommandError {
Usage(&'static str),
ReleaseSet(Box<dyn Error>),
}Expand description
ReleaseSetCommandError
Variants§
Trait Implementations§
Source§impl Debug for ReleaseSetCommandError
impl Debug for ReleaseSetCommandError
Source§impl Display for ReleaseSetCommandError
impl Display for ReleaseSetCommandError
Source§impl Error for ReleaseSetCommandError
impl Error for ReleaseSetCommandError
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()
Source§impl From<ReleaseSetCommandError> for CliError
impl From<ReleaseSetCommandError> for CliError
Source§fn from(source: ReleaseSetCommandError) -> Self
fn from(source: ReleaseSetCommandError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ReleaseSetCommandError
impl !RefUnwindSafe for ReleaseSetCommandError
impl !Send for ReleaseSetCommandError
impl !Sync for ReleaseSetCommandError
impl Unpin for ReleaseSetCommandError
impl UnsafeUnpin for ReleaseSetCommandError
impl !UnwindSafe for ReleaseSetCommandError
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