Enum symbolic_symcache::SymCacheErrorKind[][src]

pub enum SymCacheErrorKind {
    BadFileMagic,
    BadFileHeader,
    BadSegment,
    BadCacheFile,
    UnsupportedVersion,
    BadDebugFile,
    MissingDebugSection,
    MissingDebugInfo,
    UnsupportedDebugKind,
    ValueTooLarge(ValueKind),
    TooManyValues(ValueKind),
    WriteFailed,
}

Variants of SymCacheError.

Variants

Invalid magic bytes in the symcache header.

Invalid flags or fields in the symcache header.

A segment could not be read, likely due to IO errors.

Contents in the symcache file are malformed.

The symcache version is not known.

The Object contains invalid data and cannot be converted.

A required debug section is missing in the Object file.

The Object file was stripped of debug information.

The debug information in the Object file is not supported.

A value cannot be written to symcache as it overflows the record size.

A value cannot be written to symcache as it overflows the segment counter.

Generic error when writing a symcache, most likely IO.

Trait Implementations

impl Debug for SymCacheErrorKind
[src]

Formats the value using the given formatter. Read more

impl Copy for SymCacheErrorKind
[src]

impl Clone for SymCacheErrorKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for SymCacheErrorKind
[src]

impl PartialEq for SymCacheErrorKind
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<SymCacheErrorKind> for SymCacheError
[src]

Performs the conversion.

Auto Trait Implementations