Enum rust_tdlib::types::CallProblem
source · [−]pub enum CallProblem {
DistortedSpeech(CallProblemDistortedSpeech),
DistortedVideo(CallProblemDistortedVideo),
Dropped(CallProblemDropped),
Echo(CallProblemEcho),
Interruptions(CallProblemInterruptions),
Noise(CallProblemNoise),
PixelatedVideo(CallProblemPixelatedVideo),
SilentLocal(CallProblemSilentLocal),
SilentRemote(CallProblemSilentRemote),
// some variants omitted
}
Expand description
Describes the exact type of a problem with a call
Variants
DistortedSpeech(CallProblemDistortedSpeech)
The speech was distorted
DistortedVideo(CallProblemDistortedVideo)
The video was distorted
Dropped(CallProblemDropped)
The call ended unexpectedly
Echo(CallProblemEcho)
The user heard their own voice
Interruptions(CallProblemInterruptions)
The other side kept disappearing
Noise(CallProblemNoise)
The user heard background noise
PixelatedVideo(CallProblemPixelatedVideo)
The video was pixelated
SilentLocal(CallProblemSilentLocal)
The user couldn’t hear the other side
SilentRemote(CallProblemSilentRemote)
The other side couldn’t hear the user
Implementations
Trait Implementations
sourceimpl AsRef<CallProblem> for CallProblem
impl AsRef<CallProblem> for CallProblem
sourcefn as_ref(&self) -> &CallProblem
fn as_ref(&self) -> &CallProblem
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl Clone for CallProblem
impl Clone for CallProblem
sourcefn clone(&self) -> CallProblem
fn clone(&self) -> CallProblem
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CallProblem
impl Debug for CallProblem
sourceimpl Default for CallProblem
impl Default for CallProblem
sourceimpl<'de> Deserialize<'de> for CallProblem
impl<'de> Deserialize<'de> for CallProblem
sourcefn 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
sourceimpl Serialize for CallProblem
impl Serialize for CallProblem
Auto Trait Implementations
impl RefUnwindSafe for CallProblem
impl Send for CallProblem
impl Sync for CallProblem
impl Unpin for CallProblem
impl UnwindSafe for CallProblem
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more