pub enum RingerMode {
Off,
Inside,
Outside,
Feature,
Silent,
Urgent,
Bellcore1,
Bellcore2,
Bellcore3,
Bellcore4,
Bellcore5,
Unknown(u32),
}Expand description
Audible ringer pattern selected for the station.
Variants§
Off
Inside
Outside
Feature
Silent
Urgent
Bellcore1
Bellcore2
Bellcore3
Bellcore4
Bellcore5
Unknown(u32)
Implementations§
Trait Implementations§
Source§impl Clone for RingerMode
impl Clone for RingerMode
Source§fn clone(&self) -> RingerMode
fn clone(&self) -> RingerMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RingerMode
Source§impl Debug for RingerMode
impl Debug for RingerMode
impl Eq for RingerMode
Source§impl From<RingerMode> for u32
impl From<RingerMode> for u32
Source§fn from(value: RingerMode) -> Self
fn from(value: RingerMode) -> Self
Converts to this type from the input type.
Source§impl From<u32> for RingerMode
impl From<u32> for RingerMode
Source§impl Hash for RingerMode
impl Hash for RingerMode
Source§impl PartialEq for RingerMode
impl PartialEq for RingerMode
impl StructuralPartialEq for RingerMode
Auto Trait Implementations§
impl Freeze for RingerMode
impl RefUnwindSafe for RingerMode
impl Send for RingerMode
impl Sync for RingerMode
impl Unpin for RingerMode
impl UnsafeUnpin for RingerMode
impl UnwindSafe for RingerMode
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