pub struct Tocall(/* private fields */);Expand description
An APRS “tocall” — the destination callsign used to identify the originating software or device.
APRS tocalls follow the form APxxxx where the xxxx is registered
with the APRS tocall registry. For the Kenwood TH-D75 the assigned
tocall is APK005. This newtype bundles the validation (1-6 ASCII
uppercase alphanumerics, just like [Callsign]) with well-known
constants for common devices.
Implementations§
Source§impl Tocall
impl Tocall
Sourcepub const TH_D75: &'static str = "APK005"
pub const TH_D75: &'static str = "APK005"
The tocall assigned to the Kenwood TH-D75 / TH-D74 family
(registered as APK005 in the APRS tocall registry).
Trait Implementations§
Source§impl Ord for Tocall
impl Ord for Tocall
Source§impl PartialOrd for Tocall
impl PartialOrd for Tocall
impl Eq for Tocall
impl StructuralPartialEq for Tocall
Auto Trait Implementations§
impl Freeze for Tocall
impl RefUnwindSafe for Tocall
impl Send for Tocall
impl Sync for Tocall
impl Unpin for Tocall
impl UnwindSafe for Tocall
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