pub struct CallStatistics {
pub audio_metrics: AudioQualityMetrics,
pub packets_sent: u64,
pub packets_received: u64,
pub bytes_sent: u64,
pub bytes_received: u64,
pub codec: String,
}
Expand description
Call statistics
Fields§
§audio_metrics: AudioQualityMetrics
Audio quality metrics
packets_sent: u64
Total packets sent
packets_received: u64
Total packets received
bytes_sent: u64
Total bytes sent
bytes_received: u64
Total bytes received
codec: String
Codec in use
Trait Implementations§
Source§impl Clone for CallStatistics
impl Clone for CallStatistics
Source§fn clone(&self) -> CallStatistics
fn clone(&self) -> CallStatistics
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 moreAuto Trait Implementations§
impl Freeze for CallStatistics
impl RefUnwindSafe for CallStatistics
impl Send for CallStatistics
impl Sync for CallStatistics
impl Unpin for CallStatistics
impl UnwindSafe for CallStatistics
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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