Enum fidl_fuchsia_pkg_ext::cache::OpenBlobError
source · pub enum OpenBlobError {
OutOfSpace,
ConcurrentWrite,
UnspecifiedIo,
Internal,
Fidl(Error),
}
Expand description
An error encountered while opening a metadata or content blob for write.
Variants§
Trait Implementations§
source§impl Debug for OpenBlobError
impl Debug for OpenBlobError
source§impl Display for OpenBlobError
impl Display for OpenBlobError
source§impl Error for OpenBlobError
impl Error for OpenBlobError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 From<Error> for OpenBlobError
impl From<Error> for OpenBlobError
source§impl From<OpenBlobError> for OpenBlobError
impl From<OpenBlobError> for OpenBlobError
source§fn from(e: OpenBlobError) -> Self
fn from(e: OpenBlobError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OpenBlobError
impl !RefUnwindSafe for OpenBlobError
impl Send for OpenBlobError
impl Sync for OpenBlobError
impl Unpin for OpenBlobError
impl !UnwindSafe for OpenBlobError
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