pub enum AddressRangesFromElfError {
NoSegments,
MemoryContentsForUninitializedMemory(u64),
MemorySegmentInvalidForDevice(u64, u64),
}Variants§
Trait Implementations§
Source§impl Debug for AddressRangesFromElfError
impl Debug for AddressRangesFromElfError
Source§impl Display for AddressRangesFromElfError
impl Display for AddressRangesFromElfError
Source§impl Error for AddressRangesFromElfError
impl Error for AddressRangesFromElfError
1.30.0 · 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<AddressRangesFromElfError> for Elf2Uf2Error
impl From<AddressRangesFromElfError> for Elf2Uf2Error
Source§fn from(source: AddressRangesFromElfError) -> Self
fn from(source: AddressRangesFromElfError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AddressRangesFromElfError
impl RefUnwindSafe for AddressRangesFromElfError
impl Send for AddressRangesFromElfError
impl Sync for AddressRangesFromElfError
impl Unpin for AddressRangesFromElfError
impl UnsafeUnpin for AddressRangesFromElfError
impl UnwindSafe for AddressRangesFromElfError
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