[][src]Struct zoom_sdk_windows_sys::ZOOMSDK_tagAudioSessionStatisticInfo

#[repr(C)]pub struct ZOOMSDK_tagAudioSessionStatisticInfo {
    pub frequency_send_: c_int,
    pub frequency_recv_: c_int,
    pub latency_send_: c_int,
    pub latency_recv_: c_int,
    pub jitter_send_: c_int,
    pub jitter_recv_: c_int,
    pub packetloss_send_: f32,
    pub packetloss_recv_: f32,
}

\struct tagAudioSessionStatisticInfo \brief Notify the audio status information. Here are more detailed structural descriptions.

Fields

frequency_send_: c_int

<Sending frequency, unit: KHz.

frequency_recv_: c_int

<Receiving frequency, unit: KHz.

latency_send_: c_int

<Sending latency, unit: ms.

latency_recv_: c_int

<Receiving latency, unit: ms.

jitter_send_: c_int

<Sending jitter, unit: ms.

jitter_recv_: c_int

<Receiving jitter, unit: ms.

packetloss_send_: f32

<Sending packet loss, unit: %.

packetloss_recv_: f32

<Receiving packet loss, unit: %.

Trait Implementations

impl Clone for ZOOMSDK_tagAudioSessionStatisticInfo[src]

impl Copy for ZOOMSDK_tagAudioSessionStatisticInfo[src]

impl Debug for ZOOMSDK_tagAudioSessionStatisticInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.