Struct zoom_api::types::PacAccounts
source · pub struct PacAccounts {
pub conference_id: i64,
pub dedicated_dial_in_number: Vec<DedicatedDialInNumber>,
pub global_dial_in_numbers: Vec<DedicatedDialInNumber>,
pub listen_only_password: String,
pub participant_password: String,
}Fields
conference_id: i64Account seats.
dedicated_dial_in_number: Vec<DedicatedDialInNumber>List of dedicated dial-in numbers.
global_dial_in_numbers: Vec<DedicatedDialInNumber>List of dedicated dial-in numbers.
listen_only_password: StringUser’s first name.
participant_password: StringUser’s first name.
Trait Implementations
sourceimpl Clone for PacAccounts
impl Clone for PacAccounts
sourcefn clone(&self) -> PacAccounts
fn clone(&self) -> PacAccounts
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 PacAccounts
impl Debug for PacAccounts
sourceimpl<'de> Deserialize<'de> for PacAccounts
impl<'de> Deserialize<'de> for PacAccounts
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 PacAccounts
impl JsonSchema for PacAccounts
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<PacAccounts> for PacAccounts
impl PartialEq<PacAccounts> for PacAccounts
sourcefn eq(&self, other: &PacAccounts) -> bool
fn eq(&self, other: &PacAccounts) -> bool
sourceimpl Serialize for PacAccounts
impl Serialize for PacAccounts
impl StructuralPartialEq for PacAccounts
Auto Trait Implementations
impl RefUnwindSafe for PacAccounts
impl Send for PacAccounts
impl Sync for PacAccounts
impl Unpin for PacAccounts
impl UnwindSafe for PacAccounts
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