[][src]Struct zoom_sdk_windows_sys::ZOOMSDK_tagInitParam

#[repr(C)]pub struct ZOOMSDK_tagInitParam {
    pub strWebDomain: *const u16,
    pub strBrandingName: *const u16,
    pub strSupportUrl: *const u16,
    pub hResInstance: *mut c_void,
    pub uiWindowIconSmallID: c_uint,
    pub uiWindowIconBigID: c_uint,
    pub emLanguageID: ZOOMSDK_SDK_LANGUAGE_ID,
    pub enableGenerateDump: bool,
    pub enableLogByDefault: bool,
    pub uiLogFileSize: c_uint,
    pub obConfigOpts: ZOOMSDK_ConfigurableOptions,
    pub locale: ZOOMSDK_SDK_APP_Locale,
    pub permonitor_awareness_mode: bool,
    pub renderOpts: ZOOMSDK_ZoomSDKRenderOptions,
    pub rawdataOpts: ZOOMSDK_RawDataOptions,
}

\struct tagInitParam \brief Initialize the SDK Parameter. Here are more detailed structural descriptions.

Fields

strWebDomain: *const u16

<Web domain.

strBrandingName: *const u16

<Branding name.

strSupportUrl: *const u16

<Support URL.

hResInstance: *mut c_void

<Resource module handle.

uiWindowIconSmallID: c_uint

<The ID of the small icon on the window.

uiWindowIconBigID: c_uint

<The ID of the big Icon on the window.

emLanguageID: ZOOMSDK_SDK_LANGUAGE_ID

<The ID of the SDK language.

enableGenerateDump: bool

<Enable generate dump file if the app crashed.

enableLogByDefault: bool

<Enable log feature.

uiLogFileSize: c_uint

<Size of a log file in M(megabyte). The default size is 5M. There are 5 log files in total and the file size varies from 1M to 50M.

obConfigOpts: ZOOMSDK_ConfigurableOptions

<The configuration options of the SDK.

locale: ZOOMSDK_SDK_APP_Localepermonitor_awareness_mode: boolrenderOpts: ZOOMSDK_ZoomSDKRenderOptionsrawdataOpts: ZOOMSDK_RawDataOptions

Trait Implementations

impl Clone for ZOOMSDK_tagInitParam[src]

impl Copy for ZOOMSDK_tagInitParam[src]

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