pub enum DownloadCliError {
RequestFailure(Error),
InvalidHeaderValue(InvalidHeaderValue),
UnexpectedStatus(StatusCode),
Status400(ComponentEndpointError),
}
Variants§
RequestFailure(Error)
InvalidHeaderValue(InvalidHeaderValue)
UnexpectedStatus(StatusCode)
Status400(ComponentEndpointError)
Trait Implementations§
source§impl From<Error> for DownloadCliError
impl From<Error> for DownloadCliError
source§fn from(error: Error) -> DownloadCliError
fn from(error: Error) -> DownloadCliError
Converts to this type from the input type.
source§impl From<InvalidHeaderValue> for DownloadCliError
impl From<InvalidHeaderValue> for DownloadCliError
source§fn from(error: InvalidHeaderValue) -> DownloadCliError
fn from(error: InvalidHeaderValue) -> DownloadCliError
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for DownloadCliError
impl Send for DownloadCliError
impl Sync for DownloadCliError
impl Unpin for DownloadCliError
impl !UnwindSafe for DownloadCliError
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