Struct zoom_api::types::AccountPlans
source · pub struct AccountPlans {
pub plan_audio: Option<PlanAudio>,
pub plan_base: PlanBase,
pub plan_large_meeting: Vec<AccountPlan>,
pub plan_phone: Option<PhonePlan>,
pub plan_recording: String,
pub plan_room_connector: Option<AccountPlan>,
pub plan_webinar: Vec<AccountPlan>,
pub plan_zoom_rooms: Option<AccountPlan>,
}Expand description
Account Plans object.
Fields
plan_audio: Option<PlanAudio>Account Plans object.
plan_base: PlanBaseAccount base plan object.
plan_large_meeting: Vec<AccountPlan>Account Plans object.
plan_phone: Option<PhonePlan>Account Plans object.
plan_recording: StringAccount Plans object.
plan_room_connector: Option<AccountPlan>Account Plans object.
plan_webinar: Vec<AccountPlan>Account Plans object.
plan_zoom_rooms: Option<AccountPlan>Account Plans object.
Trait Implementations
sourceimpl Clone for AccountPlans
impl Clone for AccountPlans
sourcefn clone(&self) -> AccountPlans
fn clone(&self) -> AccountPlans
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 AccountPlans
impl Debug for AccountPlans
sourceimpl<'de> Deserialize<'de> for AccountPlans
impl<'de> Deserialize<'de> for AccountPlans
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 AccountPlans
impl JsonSchema for AccountPlans
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<AccountPlans> for AccountPlans
impl PartialEq<AccountPlans> for AccountPlans
sourcefn eq(&self, other: &AccountPlans) -> bool
fn eq(&self, other: &AccountPlans) -> bool
sourceimpl Serialize for AccountPlans
impl Serialize for AccountPlans
impl StructuralPartialEq for AccountPlans
Auto Trait Implementations
impl RefUnwindSafe for AccountPlans
impl Send for AccountPlans
impl Sync for AccountPlans
impl Unpin for AccountPlans
impl UnwindSafe for AccountPlans
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