pub struct EchoLinkMemory {
pub slot: EchoLinkSlot,
pub name: EchoLinkName,
pub node_number: EchoLinkNode,
}Expand description
An EchoLink memory slot.
The TH-D75 provides 10 EchoLink memory slots (0-9), each storing
a station name and node number. Node numbers are dialed via DTMF
to connect to the remote EchoLink station through a repeater’s
EchoLink interface.
Fields§
§slot: EchoLinkSlotSlot index (0-9).
name: EchoLinkNameStation name or callsign (up to 8 characters).
node_number: EchoLinkNodeEchoLink node number (up to 6 digits).
Trait Implementations§
Source§impl Clone for EchoLinkMemory
impl Clone for EchoLinkMemory
Source§fn clone(&self) -> EchoLinkMemory
fn clone(&self) -> EchoLinkMemory
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 EchoLinkMemory
impl Debug for EchoLinkMemory
Source§impl Hash for EchoLinkMemory
impl Hash for EchoLinkMemory
Source§impl PartialEq for EchoLinkMemory
impl PartialEq for EchoLinkMemory
impl Eq for EchoLinkMemory
impl StructuralPartialEq for EchoLinkMemory
Auto Trait Implementations§
impl Freeze for EchoLinkMemory
impl RefUnwindSafe for EchoLinkMemory
impl Send for EchoLinkMemory
impl Sync for EchoLinkMemory
impl Unpin for EchoLinkMemory
impl UnwindSafe for EchoLinkMemory
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