pub enum HostRepoPlanError {
MissingHostOrRepo,
}Expand description
Failure when start-form host/repo positionals are incomplete.
Variants§
MissingHostOrRepo
Host and/or repo missing when no subcommand is present.
Implementations§
Trait Implementations§
Source§impl Clone for HostRepoPlanError
impl Clone for HostRepoPlanError
Source§fn clone(&self) -> HostRepoPlanError
fn clone(&self) -> HostRepoPlanError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for HostRepoPlanError
Source§impl Debug for HostRepoPlanError
impl Debug for HostRepoPlanError
Source§impl Display for HostRepoPlanError
impl Display for HostRepoPlanError
impl Eq for HostRepoPlanError
Source§impl Error for HostRepoPlanError
impl Error for HostRepoPlanError
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()
Source§impl PartialEq for HostRepoPlanError
impl PartialEq for HostRepoPlanError
impl StructuralPartialEq for HostRepoPlanError
Auto Trait Implementations§
impl Freeze for HostRepoPlanError
impl RefUnwindSafe for HostRepoPlanError
impl Send for HostRepoPlanError
impl Sync for HostRepoPlanError
impl Unpin for HostRepoPlanError
impl UnsafeUnpin for HostRepoPlanError
impl UnwindSafe for HostRepoPlanError
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