Enum fuchsia_inspect::reader::ReaderError
source · pub enum ReaderError {
Show 22 variants
Fidl(Error),
LazyCallback(Error),
MissingHeader,
ParentIndexNotFound(BlockIndex),
MalformedTree,
VmoFormat(Error),
AttemptedToReadTooManyArraySlots(BlockIndex),
UnexpectedArrayEntryFormat(BlockType),
ParseName(BlockIndex),
GetLinkContent(BlockIndex),
GetExtent(BlockIndex),
InconsistentSnapshot,
MissingHeaderOrLocked,
NoOpInspector,
Vmo(Status),
Hierarchy(Error),
DuplicateVmo,
FetchVmo,
FailedToLoadTree(String),
TreeTimedOut,
FailedToLockState(Error),
OffsetOutOfBounds,
}
Variants§
Fidl(Error)
LazyCallback(Error)
MissingHeader
ParentIndexNotFound(BlockIndex)
MalformedTree
VmoFormat(Error)
AttemptedToReadTooManyArraySlots(BlockIndex)
UnexpectedArrayEntryFormat(BlockType)
ParseName(BlockIndex)
GetLinkContent(BlockIndex)
GetExtent(BlockIndex)
InconsistentSnapshot
MissingHeaderOrLocked
NoOpInspector
Vmo(Status)
Hierarchy(Error)
DuplicateVmo
FetchVmo
FailedToLoadTree(String)
TreeTimedOut
FailedToLockState(Error)
OffsetOutOfBounds
Trait Implementations§
source§impl Debug for ReaderError
impl Debug for ReaderError
source§impl Display for ReaderError
impl Display for ReaderError
source§impl Error for ReaderError
impl Error for ReaderError
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 ReaderError
impl From<Error> for ReaderError
source§fn from(error: FormatError) -> Self
fn from(error: FormatError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ReaderError
impl !RefUnwindSafe for ReaderError
impl Send for ReaderError
impl Sync for ReaderError
impl Unpin for ReaderError
impl !UnwindSafe for ReaderError
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