pub struct RepeaterEntry {
pub group_name: String,
pub name: String,
pub sub_name: String,
pub callsign_rpt1: String,
pub callsign_rpt2: String,
pub frequency: u32,
pub duplex: String,
pub offset: u32,
}Expand description
A single D-STAR repeater directory entry.
Fields§
§group_name: StringRepeater group or region name (e.g., "Japan").
name: StringRepeater name or description.
sub_name: StringSub-name or area description.
callsign_rpt1: StringRPT1 callsign (D-STAR 8-char, space-padded, e.g., "JR6YPR A").
callsign_rpt2: StringRPT2/gateway callsign (D-STAR 8-char, space-padded, e.g., "JR6YPR G").
frequency: u32Operating frequency in Hz.
duplex: StringDuplex direction ("+", "-", or empty for simplex).
offset: u32TX offset frequency in Hz.
Trait Implementations§
Source§impl Clone for RepeaterEntry
impl Clone for RepeaterEntry
Source§fn clone(&self) -> RepeaterEntry
fn clone(&self) -> RepeaterEntry
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 RepeaterEntry
impl Debug for RepeaterEntry
Source§impl PartialEq for RepeaterEntry
impl PartialEq for RepeaterEntry
impl Eq for RepeaterEntry
impl StructuralPartialEq for RepeaterEntry
Auto Trait Implementations§
impl Freeze for RepeaterEntry
impl RefUnwindSafe for RepeaterEntry
impl Send for RepeaterEntry
impl Sync for RepeaterEntry
impl Unpin for RepeaterEntry
impl UnwindSafe for RepeaterEntry
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