pub struct DstarCallsign(/* private fields */);Expand description
D-STAR callsign (up to 8 characters, space-padded).
D-STAR callsigns are always exactly 8 characters in the protocol, right-padded with spaces. This type stores the trimmed form and provides padding methods for wire encoding.
Implementations§
Source§impl DstarCallsign
impl DstarCallsign
Trait Implementations§
Source§impl Clone for DstarCallsign
impl Clone for DstarCallsign
Source§fn clone(&self) -> DstarCallsign
fn clone(&self) -> DstarCallsign
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 DstarCallsign
impl Debug for DstarCallsign
Source§impl Default for DstarCallsign
impl Default for DstarCallsign
Source§fn default() -> DstarCallsign
fn default() -> DstarCallsign
Returns the “default value” for a type. Read more
Source§impl Hash for DstarCallsign
impl Hash for DstarCallsign
Source§impl PartialEq for DstarCallsign
impl PartialEq for DstarCallsign
impl Eq for DstarCallsign
impl StructuralPartialEq for DstarCallsign
Auto Trait Implementations§
impl Freeze for DstarCallsign
impl RefUnwindSafe for DstarCallsign
impl Send for DstarCallsign
impl Sync for DstarCallsign
impl Unpin for DstarCallsign
impl UnwindSafe for DstarCallsign
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