pub struct DtmfMemory {
pub slot: DtmfSlot,
pub name: DtmfName,
pub digits: DtmfDigits,
}Expand description
A DTMF memory slot.
The TH-D75 provides 16 DTMF memory slots (0-15), each storing a
name and a sequence of DTMF digits for the auto dialer function.
Valid DTMF digits are 0-9, A-D, *, and #.
Fields§
§slot: DtmfSlotSlot index (0-15).
name: DtmfNameMemory name (up to 8 characters).
digits: DtmfDigitsDTMF digit sequence.
Trait Implementations§
Source§impl Clone for DtmfMemory
impl Clone for DtmfMemory
Source§fn clone(&self) -> DtmfMemory
fn clone(&self) -> DtmfMemory
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 DtmfMemory
impl Debug for DtmfMemory
Source§impl Hash for DtmfMemory
impl Hash for DtmfMemory
Source§impl PartialEq for DtmfMemory
impl PartialEq for DtmfMemory
impl Eq for DtmfMemory
impl StructuralPartialEq for DtmfMemory
Auto Trait Implementations§
impl Freeze for DtmfMemory
impl RefUnwindSafe for DtmfMemory
impl Send for DtmfMemory
impl Sync for DtmfMemory
impl Unpin for DtmfMemory
impl UnwindSafe for DtmfMemory
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