pub enum ToggleActionResult {
NotRelevant,
Off,
On,
}Variants§
NotRelevant
Action doesn’t belong to this extension or doesn’t toggle.
Off
Action belongs to this extension and is currently set to off
On
Action belongs to this extension and is currently set to on
Auto Trait Implementations§
impl Freeze for ToggleActionResult
impl RefUnwindSafe for ToggleActionResult
impl Send for ToggleActionResult
impl Sync for ToggleActionResult
impl Unpin for ToggleActionResult
impl UnwindSafe for ToggleActionResult
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