#[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.
Modified
The fuse existed in the binary and was updated with the supplied value.
Removed
The fuse existed in the binary, but was marked as removed.
The binary contents will not be modified.
Trait Implementations§
Source§impl Debug for FuseStatus
impl Debug for FuseStatus
Source§impl PartialEq for FuseStatus
impl PartialEq for FuseStatus
impl StructuralPartialEq for FuseStatus
Auto Trait Implementations§
impl Freeze for FuseStatus
impl RefUnwindSafe for FuseStatus
impl Send for FuseStatus
impl Sync for FuseStatus
impl Unpin for FuseStatus
impl UnwindSafe for FuseStatus
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