pub struct HotspotEntry {
pub name: String,
pub sub_name: String,
pub callsign_rpt1: DstarCallsign,
pub gateway_rpt2: DstarCallsign,
pub frequency: u32,
pub lockout: bool,
}Expand description
D-STAR hotspot list entry.
The TH-D75 supports up to 30 hotspot entries for personal D-STAR
access points (e.g. DVAP, DV4mini, MMDVM).
Fields§
§name: StringHotspot name (up to 16 characters).
sub_name: StringSub-name / description (up to 16 characters).
callsign_rpt1: DstarCallsignRPT1 callsign (8-character D-STAR format).
gateway_rpt2: DstarCallsignGateway / RPT2 callsign (8-character D-STAR format).
frequency: u32Operating frequency in Hz.
lockout: boolLockout this hotspot from scanning.
Trait Implementations§
Source§impl Clone for HotspotEntry
impl Clone for HotspotEntry
Source§fn clone(&self) -> HotspotEntry
fn clone(&self) -> HotspotEntry
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 HotspotEntry
impl Debug for HotspotEntry
Source§impl PartialEq for HotspotEntry
impl PartialEq for HotspotEntry
impl Eq for HotspotEntry
impl StructuralPartialEq for HotspotEntry
Auto Trait Implementations§
impl Freeze for HotspotEntry
impl RefUnwindSafe for HotspotEntry
impl Send for HotspotEntry
impl Sync for HotspotEntry
impl Unpin for HotspotEntry
impl UnwindSafe for HotspotEntry
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