pub enum KeyMode {
Show 15 variants
OnHook,
Connected,
OnHold,
RingIn,
OffHook,
ConnectedTransfer,
DigitsFollowing,
ConnectedConference,
RingOut,
OffHookFeature,
InUseHint,
OnHookStealable,
HoldConference,
Empty,
Unknown(u32),
}Expand description
Call-state context used to select an advertised soft-key set.
Variants§
OnHook
Connected
OnHold
RingIn
OffHook
ConnectedTransfer
DigitsFollowing
ConnectedConference
RingOut
OffHookFeature
InUseHint
OnHookStealable
HoldConference
Empty
Unknown(u32)
Preserves an SCCP numeric value not recognized by this crate. Allows newer or vendor-specific values to round-trip without loss.
Implementations§
Trait Implementations§
impl Copy for KeyMode
impl Eq for KeyMode
impl StructuralPartialEq for KeyMode
Auto Trait Implementations§
impl Freeze for KeyMode
impl RefUnwindSafe for KeyMode
impl Send for KeyMode
impl Sync for KeyMode
impl Unpin for KeyMode
impl UnsafeUnpin for KeyMode
impl UnwindSafe for KeyMode
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