pub enum ProgramReadErrors {
ReadError,
UnexpectedPlatformArchitecture,
UnmatchedPlatformArchitecture(PlatformArchitecture, PlatformArchitecture),
NoMainFunction,
BrokenMainFunction,
IllegalOpCode,
Complete,
}Variants§
ReadError
UnexpectedPlatformArchitecture
UnmatchedPlatformArchitecture(PlatformArchitecture, PlatformArchitecture)
NoMainFunction
BrokenMainFunction
IllegalOpCode
Complete
Trait Implementations§
Source§impl Debug for ProgramReadErrors
impl Debug for ProgramReadErrors
Source§impl PartialEq for ProgramReadErrors
impl PartialEq for ProgramReadErrors
impl StructuralPartialEq for ProgramReadErrors
Auto Trait Implementations§
impl Freeze for ProgramReadErrors
impl RefUnwindSafe for ProgramReadErrors
impl Send for ProgramReadErrors
impl Sync for ProgramReadErrors
impl Unpin for ProgramReadErrors
impl UnwindSafe for ProgramReadErrors
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