#[non_exhaustive]#[repr(u32)]pub enum RtcPriorityType {
VeryLow = 0,
Low = 1,
Medium = 2,
High = 3,
}
Expand description
The RtcPriorityType
enum.
This API requires the following crate features to be activated: RtcPriorityType
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Source§impl RtcPriorityType
impl RtcPriorityType
pub fn from_js_value(obj: &JsValue) -> Option<RtcPriorityType>
Trait Implementations§
Source§impl Clone for RtcPriorityType
impl Clone for RtcPriorityType
Source§fn clone(&self) -> RtcPriorityType
fn clone(&self) -> RtcPriorityType
Returns a copy 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 RtcPriorityType
impl Debug for RtcPriorityType
Source§impl From<RtcPriorityType> for JsValue
impl From<RtcPriorityType> for JsValue
Source§fn from(val: RtcPriorityType) -> Self
fn from(val: RtcPriorityType) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for RtcPriorityType
impl FromWasmAbi for RtcPriorityType
Source§impl IntoWasmAbi for RtcPriorityType
impl IntoWasmAbi for RtcPriorityType
Source§impl OptionFromWasmAbi for RtcPriorityType
impl OptionFromWasmAbi for RtcPriorityType
Source§impl OptionIntoWasmAbi for RtcPriorityType
impl OptionIntoWasmAbi for RtcPriorityType
Source§impl PartialEq for RtcPriorityType
impl PartialEq for RtcPriorityType
impl Copy for RtcPriorityType
impl Eq for RtcPriorityType
impl StructuralPartialEq for RtcPriorityType
Auto Trait Implementations§
impl Freeze for RtcPriorityType
impl RefUnwindSafe for RtcPriorityType
impl Send for RtcPriorityType
impl Sync for RtcPriorityType
impl Unpin for RtcPriorityType
impl UnwindSafe for RtcPriorityType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.