pub enum DelayedCheckoutError {
Reported,
Transport(String),
}Expand description
Failure from DelayedProcessCheckout::finish.
Variants§
Reported
One or more per-path errors were already printed to stderr in Git’s error: ... format;
the caller should exit non-zero without printing anything further.
Transport(String)
A transport/conversion error (not a per-path filter error) with a message to bubble up.
Trait Implementations§
Source§impl Debug for DelayedCheckoutError
impl Debug for DelayedCheckoutError
Source§impl Display for DelayedCheckoutError
impl Display for DelayedCheckoutError
Source§impl Error for DelayedCheckoutError
impl Error for DelayedCheckoutError
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 DelayedCheckoutError
impl RefUnwindSafe for DelayedCheckoutError
impl Send for DelayedCheckoutError
impl Sync for DelayedCheckoutError
impl Unpin for DelayedCheckoutError
impl UnsafeUnpin for DelayedCheckoutError
impl UnwindSafe for DelayedCheckoutError
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