pub enum NonMetaStorageError {
ReadBlob(ReadError),
OpenBlob(OpenError),
Fidl(Error),
GetVmo(Status),
}
Variants§
Implementations§
Source§impl NonMetaStorageError
impl NonMetaStorageError
pub fn is_not_found_error(&self) -> bool
Trait Implementations§
Source§impl Debug for NonMetaStorageError
impl Debug for NonMetaStorageError
Source§impl Display for NonMetaStorageError
impl Display for NonMetaStorageError
Source§impl Error for NonMetaStorageError
impl Error for NonMetaStorageError
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()
Source§impl From<&NonMetaStorageError> for Status
impl From<&NonMetaStorageError> for Status
Source§fn from(e: &NonMetaStorageError) -> Self
fn from(e: &NonMetaStorageError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NonMetaStorageError
impl !RefUnwindSafe for NonMetaStorageError
impl Send for NonMetaStorageError
impl Sync for NonMetaStorageError
impl Unpin for NonMetaStorageError
impl !UnwindSafe for NonMetaStorageError
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