Enum gimli::write::ConvertError [−][src]
pub enum ConvertError {
Show 19 variants
Read(Error),
UnsupportedAttributeValue,
InvalidAttributeValue,
InvalidDebugInfoOffset,
InvalidAddress,
UnsupportedLineInstruction,
UnsupportedLineStringForm,
InvalidFileIndex,
InvalidDirectoryIndex,
InvalidLineBase,
InvalidLineRef,
InvalidUnitRef,
InvalidDebugInfoRef,
InvalidRangeRelativeAddress,
UnsupportedCfiInstruction,
UnsupportedIndirectAddress,
UnsupportedOperation,
InvalidBranchTarget,
UnsupportedUnitType,
}
Expand description
An error that occurred when converting a read value into a write value.
Variants
Read(Error)
An error occurred when reading.
Tuple Fields of Read
0: Error
Writing of this attribute value is not implemented yet.
This attribute value is an invalid name/form combination.
A .debug_info
reference does not refer to a valid entry.
An address could not be converted.
Writing this line number instruction is not implemented yet.
Writing this form of line string is not implemented yet.
A .debug_line
file index is invalid.
A .debug_line
directory index is invalid.
A .debug_line
line base is invalid.
A .debug_line
reference is invalid.
A .debug_info
unit entry reference is invalid.
A .debug_info
reference is invalid.
Invalid relative address in a range list.
Writing this CFI instruction is not implemented yet.
Writing indirect pointers is not implemented yet.
Writing this expression operation is not implemented yet.
Operation branch target is invalid.
Writing this unit type is not supported yet.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ConvertError
impl Send for ConvertError
impl Sync for ConvertError
impl Unpin for ConvertError
impl UnwindSafe for ConvertError
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.