Skip to main content

Callsign

Struct Callsign 

Source
pub struct Callsign { /* private fields */ }
Expand description

An APRS callsign with an optional SSID.

The SSID is usually a numeric 0–15 (as in AX.25) but APRS-IS and D-STAR gateways also use short alphanumeric SSIDs such as -S or -B. Both the base call and SSID are stored as uppercase ASCII in fixed-size inline buffers — no heap allocation.

Implementations§

Source§

impl Callsign

Source

pub fn decode_textual(input: &[u8]) -> Result<Self, AprsError>

Parse a textual callsign (e.g. W1AW-9, or a D-STAR K0HRV-S).

Source

pub fn decode_ax25(bytes: &[u8]) -> Result<(Self, bool), AprsError>

Decode a 7-byte AX.25 address field.

AX.25 stores each character left-shifted by one bit. The SSID byte encodes the SSID in bits 1–4 and the end-of-address (EOA) flag in bit 0. Returns (callsign, eoa).

Source

pub fn as_str(&self) -> &str

Source

pub fn ssid(&self) -> Option<&str>

The SSID in textual form (e.g. "9", "S"), or None for no SSID.

Source

pub fn ssid_numeric(&self) -> Option<u8>

The SSID as a number, if it is numeric (0–15). Returns None for no SSID or for an alphanumeric (e.g. D-STAR) SSID.

Source

pub fn encode_textual(&self, out: &mut Vec<u8>)

Write this callsign in textual APRS format.

Source

pub fn encode_ax25(&self, out: &mut Vec<u8>, eoa: bool)

Write this callsign as a 7-byte AX.25 address field.

AX.25 can only represent numeric SSIDs 0–15; an alphanumeric SSID (only valid in textual/APRS-IS form) is encoded as SSID 0.

Trait Implementations§

Source§

impl Clone for Callsign

Source§

fn clone(&self) -> Callsign

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Callsign

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Callsign

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Hash for Callsign

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for Callsign

Source§

fn eq(&self, other: &Callsign) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for Callsign

Source§

impl StructuralPartialEq for Callsign

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.