#[repr(C)]pub enum ImageFlag {
New = 255,
CommitPending = 254,
Valid = 252,
Invalid = 248,
}Variants§
New = 255
If the application image is running for the first time and never executed before.
CommitPending = 254
The application image is marked to execute for test boot.
Valid = 252
The application image is marked valid and committed.
Invalid = 248
The application image is marked invalid.
Trait Implementations§
impl Copy for ImageFlag
impl Eq for ImageFlag
impl StructuralPartialEq for ImageFlag
Auto Trait Implementations§
impl Freeze for ImageFlag
impl RefUnwindSafe for ImageFlag
impl Send for ImageFlag
impl Sync for ImageFlag
impl Unpin for ImageFlag
impl UnwindSafe for ImageFlag
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