pub enum CallProblem {
Echo,
Noise,
Interruptions,
DistortedSpeech,
SilentLocal,
SilentRemote,
Dropped,
DistortedVideo,
PixelatedVideo,
}Variants§
Echo
The user heard their own voice
Noise
The user heard background noise
Interruptions
The other side kept disappearing
DistortedSpeech
The speech was distorted
SilentLocal
The user couldn’t hear the other side
SilentRemote
The other side couldn’t hear the user
Dropped
The call ended unexpectedly
DistortedVideo
The video was distorted
PixelatedVideo
The video was pixelated
Trait Implementations§
Source§impl Clone for CallProblem
impl Clone for CallProblem
Source§fn clone(&self) -> CallProblem
fn clone(&self) -> CallProblem
Returns a duplicate 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 CallProblem
impl Debug for CallProblem
Source§impl<'de> Deserialize<'de> for CallProblem
impl<'de> Deserialize<'de> for CallProblem
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CallProblem
impl PartialEq for CallProblem
Source§impl Serialize for CallProblem
impl Serialize for CallProblem
impl StructuralPartialEq for CallProblem
Auto Trait Implementations§
impl Freeze for CallProblem
impl RefUnwindSafe for CallProblem
impl Send for CallProblem
impl Sync for CallProblem
impl Unpin for CallProblem
impl UnwindSafe for CallProblem
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