pub enum BranchOpenError {
Unsupported {
url: Url,
description: String,
vcs: Option<String>,
},
Missing {
url: Url,
description: String,
},
RateLimited {
url: Url,
description: String,
retry_after: Option<f64>,
},
Unavailable {
url: Url,
description: String,
},
TemporarilyUnavailable {
url: Url,
description: String,
},
Other(String),
}Variants§
Implementations§
Trait Implementations§
source§impl Debug for BranchOpenError
impl Debug for BranchOpenError
source§impl Display for BranchOpenError
impl Display for BranchOpenError
source§impl From<BranchOpenError> for Error
impl From<BranchOpenError> for Error
source§fn from(e: BranchOpenError) -> Self
fn from(e: BranchOpenError) -> Self
Converts to this type from the input type.
source§impl From<BranchOpenError> for Error
impl From<BranchOpenError> for Error
source§fn from(e: BranchOpenError) -> Self
fn from(e: BranchOpenError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BranchOpenError
impl RefUnwindSafe for BranchOpenError
impl Send for BranchOpenError
impl Sync for BranchOpenError
impl Unpin for BranchOpenError
impl UnwindSafe for BranchOpenError
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