Enum fuchsia_inspect::reader::ReaderError
source · pub enum ReaderError {
Show 22 variants
Fidl(Error),
LazyCallback(Error),
MissingHeader,
ParentIndexNotFound(u32),
MalformedTree,
VmoFormat(FormatError),
AttemptedToReadTooManyArraySlots(u32),
UnexpectedArrayEntryFormat(BlockType),
ParseName(u32),
GetLinkContent(u32),
GetExtent(u32),
InconsistentSnapshot,
MissingHeaderOrLocked,
NoOpInspector,
Vmo(Status),
Hierarchy(HierarchyError),
DuplicateVmo,
FetchVmo,
FailedToLoadTree(String),
TreeTimedOut,
FailedToLockState(WriterError),
OffsetOutOfBounds,
}
Variants§
Fidl(Error)
LazyCallback(Error)
MissingHeader
ParentIndexNotFound(u32)
MalformedTree
VmoFormat(FormatError)
AttemptedToReadTooManyArraySlots(u32)
UnexpectedArrayEntryFormat(BlockType)
ParseName(u32)
GetLinkContent(u32)
GetExtent(u32)
InconsistentSnapshot
MissingHeaderOrLocked
NoOpInspector
Vmo(Status)
Hierarchy(HierarchyError)
DuplicateVmo
FetchVmo
FailedToLoadTree(String)
TreeTimedOut
FailedToLockState(WriterError)
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.