pub enum AutoPowerOff {
Off,
Min30,
Min60,
Min90,
Min120,
}Expand description
Auto power off timer duration (Menu No. 921).
Per User Manual Chapter 12: after the time limit with no operations, APO turns the power off. One minute before power-off, “APO” blinks on the display and a warning tone sounds (even if beep is disabled). APO does not operate during scanning.
The User Manual menu table lists options: Off / 15 / 30 / 60 minutes (default: 30). The firmware MCP binary encoding may support additional values (90, 120 minutes) not shown in the manual.
Variants§
Off
Auto power off disabled.
Min30
Power off after 30 minutes of inactivity.
Min60
Power off after 60 minutes of inactivity.
Min90
Power off after 90 minutes of inactivity.
Min120
Power off after 120 minutes of inactivity.
Trait Implementations§
Source§impl Clone for AutoPowerOff
impl Clone for AutoPowerOff
Source§fn clone(&self) -> AutoPowerOff
fn clone(&self) -> AutoPowerOff
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AutoPowerOff
impl Debug for AutoPowerOff
Source§impl Hash for AutoPowerOff
impl Hash for AutoPowerOff
Source§impl PartialEq for AutoPowerOff
impl PartialEq for AutoPowerOff
Source§impl TryFrom<u8> for AutoPowerOff
impl TryFrom<u8> for AutoPowerOff
impl Copy for AutoPowerOff
impl Eq for AutoPowerOff
impl StructuralPartialEq for AutoPowerOff
Auto Trait Implementations§
impl Freeze for AutoPowerOff
impl RefUnwindSafe for AutoPowerOff
impl Send for AutoPowerOff
impl Sync for AutoPowerOff
impl Unpin for AutoPowerOff
impl UnwindSafe for AutoPowerOff
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