pub enum CallPriority {
Highest,
High,
Medium,
Low,
Normal,
Unknown(u32),
}Expand description
Precedence assigned to a call or media request.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CallPriority
impl Clone for CallPriority
Source§fn clone(&self) -> CallPriority
fn clone(&self) -> CallPriority
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 CallPriority
Source§impl Debug for CallPriority
impl Debug for CallPriority
impl Eq for CallPriority
Source§impl From<CallPriority> for u32
impl From<CallPriority> for u32
Source§fn from(value: CallPriority) -> Self
fn from(value: CallPriority) -> Self
Converts to this type from the input type.
Source§impl From<u32> for CallPriority
impl From<u32> for CallPriority
Source§impl Hash for CallPriority
impl Hash for CallPriority
Source§impl PartialEq for CallPriority
impl PartialEq for CallPriority
impl StructuralPartialEq for CallPriority
Auto Trait Implementations§
impl Freeze for CallPriority
impl RefUnwindSafe for CallPriority
impl Send for CallPriority
impl Sync for CallPriority
impl Unpin for CallPriority
impl UnsafeUnpin for CallPriority
impl UnwindSafe for CallPriority
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