pub enum DecLibraryError {
HttpRequestBuilderError(Error),
RegistryAuthJsonEncodingError(Error),
RequestSerializationError(Error),
UrlBuilderJsonError(Error),
UrlBuilderParseError(ParseError),
}
Expand description
An error occurred during use of the Docker Engine client, and the error is likely a bug of this library, as opposed to an external condition such as a broken TCP connection or a misconfigured container.
Variants§
HttpRequestBuilderError(Error)
Failed to build a request object for the underlying HTTP client library.
RegistryAuthJsonEncodingError(Error)
Failed to encode registry authentication as json.
RequestSerializationError(Error)
Failed to convert a request into JSON.
UrlBuilderJsonError(Error)
Failed to serialize JSON while building a URL.
UrlBuilderParseError(ParseError)
Failed to build a URL.
Implementations§
Trait Implementations§
Source§impl Debug for DecLibraryError
impl Debug for DecLibraryError
Source§impl Display for DecLibraryError
impl Display for DecLibraryError
Source§impl From<DecLibraryError> for DecUseError
impl From<DecLibraryError> for DecUseError
Source§fn from(other: DecLibraryError) -> Self
fn from(other: DecLibraryError) -> Self
Converts to this type from the input type.
Source§impl From<ParseError> for DecLibraryError
impl From<ParseError> for DecLibraryError
Source§fn from(other: ParseError) -> Self
fn from(other: ParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DecLibraryError
impl !RefUnwindSafe for DecLibraryError
impl Send for DecLibraryError
impl Sync for DecLibraryError
impl Unpin for DecLibraryError
impl !UnwindSafe for DecLibraryError
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