[][src]Struct zoom_sdk_windows_sys::ZOOMSDK_tagASVSessionStatisticInfo

#[repr(C)]pub struct ZOOMSDK_tagASVSessionStatisticInfo {
    pub latency_send_: c_int,
    pub latency_recv_: c_int,
    pub jitter_send_: c_int,
    pub jitter_recv_: c_int,
    pub packetloss_send_max_: f32,
    pub packetloss_recv_max_: f32,
    pub packetloss_send_avg_: f32,
    pub packetloss_recv_avg_: f32,
    pub resolution_send_: c_int,
    pub resolution_recv_: c_int,
    pub fps_send_: c_int,
    pub fps_recv_: c_int,
}

\struct tagASVSessionStatisticInfo \brief Notify video status information. Here are more detailed structural descriptions.

Fields

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_max_: f32

<Sending max packet loss, unit: %.

packetloss_recv_max_: f32

<Receiving max packet loss, unit: %.

packetloss_send_avg_: f32

<Sending average packet loss, unit: %.

packetloss_recv_avg_: f32

<Receiving average packet loss, unit: %.

resolution_send_: c_int

height, LOWORD->width.

resolution_recv_: c_int

height, LOWORD->width.

fps_send_: c_int
fps_recv_: c_int

Trait Implementations

impl Clone for ZOOMSDK_tagASVSessionStatisticInfo[src]

impl Copy for ZOOMSDK_tagASVSessionStatisticInfo[src]

impl Debug for ZOOMSDK_tagASVSessionStatisticInfo[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.