pub enum SmartEepromMode<'a> {
Locked(SmartEeprom<'a, Locked>),
Unlocked(SmartEeprom<'a, Unlocked>),
}
Expand description
Enum encapsulating different modes SmartEEPROM can be in.
Variants§
Locked(SmartEeprom<'a, Locked>)
SmartEEPROM is locked
Unlocked(SmartEeprom<'a, Unlocked>)
SmartEEPROM is unlocked
Auto Trait Implementations§
impl<'a> Freeze for SmartEepromMode<'a>
impl<'a> RefUnwindSafe for SmartEepromMode<'a>
impl<'a> Send for SmartEepromMode<'a>
impl<'a> !Sync for SmartEepromMode<'a>
impl<'a> Unpin for SmartEepromMode<'a>
impl<'a> !UnwindSafe for SmartEepromMode<'a>
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