[][src]Struct zoom_sdk_windows_sys::ZOOMSDK_tagStartParam4NormalUser

#[repr(C)]pub struct ZOOMSDK_tagStartParam4NormalUser {
    pub meetingNumber: UINT64,
    pub vanityID: *const u16,
    pub hDirectShareAppWnd: HWND,
    pub participantId: *const u16,
    pub isVideoOff: bool,
    pub isAudioOff: bool,
    pub isDirectShareDesktop: bool,
}

\struct tagStartParam4NormalUser \brief The parameter of ordinary user when starts meeting. Here are more detailed structural descriptions.

Fields

meetingNumber: UINT64

<Meeting number.

vanityID: *const u16

<Meeting vanity ID. Generate a ZOOM access token via REST API.

hDirectShareAppWnd: HWND

<The window handle of the direct sharing application.

participantId: *const u16

<The ID of attendees. The SDK will set this value when the associated settings are turned on.

isVideoOff: bool

<Turn off video or not. True indicates to turn off. In addition, this flag is affected by meeting attributes.

isAudioOff: bool

<Turn off audio or not. True indicates to turn off. In addition, this flag is affected by meeting attributes.

isDirectShareDesktop: bool

<Share the desktop directly or not. True indicates to Share.

Trait Implementations

impl Clone for ZOOMSDK_tagStartParam4NormalUser[src]

impl Copy for ZOOMSDK_tagStartParam4NormalUser[src]

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