[][src]Struct zoom_sdk_windows_sys::ZOOMSDK_tagStartParam4WithoutLogin

#[repr(C)]pub struct ZOOMSDK_tagStartParam4WithoutLogin {
    pub userID: *const u16,
    pub userZAK: *const u16,
    pub userName: *const u16,
    pub zoomuserType: ZOOMSDK_ZoomUserType,
    pub meetingNumber: UINT64,
    pub vanityID: *const u16,
    pub hDirectShareAppWnd: HWND,
    pub participantId: *const u16,
    pub isDirectShareDesktop: bool,
    pub isVideoOff: bool,
    pub isAudioOff: bool,
}

\struct tagStartParam4WithoutLogin \brief The parameter used by unlogged-in user when starts the meeting. Here are more detailed structural descriptions.

Fields

userID: *const u16

<User ID.

userZAK: *const u16

<ZOOM access token.

userName: *const u16

<Username when logged in the meeting.

zoomuserType: ZOOMSDK_ZoomUserType

<User type.

meetingNumber: UINT64

<Meeting number.

vanityID: *const u16

< Meeting vanity ID

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.

isDirectShareDesktop: bool

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

isVideoOff: bool

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

isAudioOff: bool

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

Trait Implementations

impl Clone for ZOOMSDK_tagStartParam4WithoutLogin[src]

impl Copy for ZOOMSDK_tagStartParam4WithoutLogin[src]

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