Enum electron_hardener::fuses::FuseStatus [−][src]
#[non_exhaustive]
pub enum FuseStatus {
Present(bool),
Modified,
Removed,
}Expand description
The result of an operation on a fuse.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Present(bool)The fuse existed in the binary.
The fuse existed in the binary and was updated with the supplied value.
The fuse existed in the binary, but was marked as removed.
The binary contents will not be modified.
Trait Implementations
impl Debug for FuseStatus[src]
impl Debug for FuseStatus[src]impl PartialEq<FuseStatus> for FuseStatus[src]
impl PartialEq<FuseStatus> for FuseStatus[src]fn eq(&self, other: &FuseStatus) -> bool[src]
fn eq(&self, other: &FuseStatus) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &FuseStatus) -> bool[src]
fn ne(&self, other: &FuseStatus) -> bool[src]This method tests for !=.