pub struct WirelessControlConfig {
pub enabled: bool,
pub password: WirelessPassword,
}Expand description
Wireless remote control configuration.
When enabled, the radio listens for incoming DTMF command sequences
and executes them if the correct password prefix is received.
The password is a 4-digit DTMF code (digits 0-9, A-D,
*, #).
Fields§
§enabled: boolEnable wireless remote control reception.
password: WirelessPassword4-digit DTMF password for wireless control access.
Trait Implementations§
Source§impl Clone for WirelessControlConfig
impl Clone for WirelessControlConfig
Source§fn clone(&self) -> WirelessControlConfig
fn clone(&self) -> WirelessControlConfig
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 WirelessControlConfig
impl Debug for WirelessControlConfig
Source§impl Default for WirelessControlConfig
impl Default for WirelessControlConfig
Source§fn default() -> WirelessControlConfig
fn default() -> WirelessControlConfig
Returns the “default value” for a type. Read more
Source§impl Hash for WirelessControlConfig
impl Hash for WirelessControlConfig
Source§impl PartialEq for WirelessControlConfig
impl PartialEq for WirelessControlConfig
impl Eq for WirelessControlConfig
impl StructuralPartialEq for WirelessControlConfig
Auto Trait Implementations§
impl Freeze for WirelessControlConfig
impl RefUnwindSafe for WirelessControlConfig
impl Send for WirelessControlConfig
impl Sync for WirelessControlConfig
impl Unpin for WirelessControlConfig
impl UnwindSafe for WirelessControlConfig
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