pub enum ServiceClass {
BestEffort,
Background,
InteractiveVideo,
InteractiveVoice,
ResponsiveData,
Signaling,
Unknown(i32),
}Expand description
Connection service class applied to new paths.
Variants§
Trait Implementations§
Source§impl Clone for ServiceClass
impl Clone for ServiceClass
Source§fn clone(&self) -> ServiceClass
fn clone(&self) -> ServiceClass
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 ServiceClass
Source§impl Debug for ServiceClass
impl Debug for ServiceClass
impl Eq for ServiceClass
Source§impl PartialEq for ServiceClass
impl PartialEq for ServiceClass
Source§fn eq(&self, other: &ServiceClass) -> bool
fn eq(&self, other: &ServiceClass) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ServiceClass
Auto Trait Implementations§
impl Freeze for ServiceClass
impl RefUnwindSafe for ServiceClass
impl Send for ServiceClass
impl Sync for ServiceClass
impl Unpin for ServiceClass
impl UnsafeUnpin for ServiceClass
impl UnwindSafe for ServiceClass
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