Struct zoom_api::types::UserSettingsMeeting
source · pub struct UserSettingsMeeting {Show 17 fields
pub audio_type: Option<AudioType>,
pub default_password_for_scheduled_meetings: String,
pub embed_password_in_join_link: bool,
pub force_pmi_jbh_password: bool,
pub host_video: bool,
pub join_before_host: bool,
pub meeting_password_requirement: Option<UserSettingsMeetingPasswordRequirement>,
pub participants_video: bool,
pub personal_meeting: bool,
pub pmi_password: String,
pub pstn_password_protected: bool,
pub require_password_for_instant_meetings: bool,
pub require_password_for_pmi_meetings: Option<RequirePasswordPmiMeetings>,
pub require_password_for_scheduled_meetings: bool,
pub require_password_for_scheduling_new_meetings: bool,
pub use_pmi_for_instant_meetings: bool,
pub use_pmi_for_scheduled_meetings: bool,
}Expand description
Fields
audio_type: Option<AudioType>default_password_for_scheduled_meetings: Stringembed_password_in_join_link: boolforce_pmi_jbh_password: boolhost_video: booljoin_before_host: boolmeeting_password_requirement: Option<UserSettingsMeetingPasswordRequirement>participants_video: boolpersonal_meeting: boolpmi_password: Stringpstn_password_protected: boolrequire_password_for_instant_meetings: boolrequire_password_for_pmi_meetings: Option<RequirePasswordPmiMeetings>require_password_for_scheduled_meetings: boolrequire_password_for_scheduling_new_meetings: booluse_pmi_for_instant_meetings: booluse_pmi_for_scheduled_meetings: boolTrait Implementations
sourceimpl Clone for UserSettingsMeeting
impl Clone for UserSettingsMeeting
sourcefn clone(&self) -> UserSettingsMeeting
fn clone(&self) -> UserSettingsMeeting
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for UserSettingsMeeting
impl Debug for UserSettingsMeeting
sourceimpl<'de> Deserialize<'de> for UserSettingsMeeting
impl<'de> Deserialize<'de> for UserSettingsMeeting
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl JsonSchema for UserSettingsMeeting
impl JsonSchema for UserSettingsMeeting
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresourceimpl PartialEq<UserSettingsMeeting> for UserSettingsMeeting
impl PartialEq<UserSettingsMeeting> for UserSettingsMeeting
sourcefn eq(&self, other: &UserSettingsMeeting) -> bool
fn eq(&self, other: &UserSettingsMeeting) -> bool
sourceimpl Serialize for UserSettingsMeeting
impl Serialize for UserSettingsMeeting
impl StructuralPartialEq for UserSettingsMeeting
Auto Trait Implementations
impl RefUnwindSafe for UserSettingsMeeting
impl Send for UserSettingsMeeting
impl Sync for UserSettingsMeeting
impl Unpin for UserSettingsMeeting
impl UnwindSafe for UserSettingsMeeting
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more