Struct zoom_api::types::PhoneUserResponse
source · pub struct PhoneUserResponse {
pub calling_plan: Vec<CallingPlan>,
pub email: String,
pub extension_number: i64,
pub id: String,
pub phone_numbers: Vec<PhoneUserResponseNumbers>,
pub phone_user_id: String,
pub policy: Option<Policy>,
pub site_admin: bool,
pub site_id: String,
pub status: Option<UserStatusRequestAction>,
}Expand description
Zoom User Profile
Fields
calling_plan: Vec<CallingPlan>Zoom User Profile
email: StringZoom User Profile
extension_number: i64Zoom User Profile
id: StringZoom User Profile
phone_numbers: Vec<PhoneUserResponseNumbers>Zoom User Profile
phone_user_id: StringZoom User Profile
policy: Option<Policy>Zoom User Profile
site_admin: boolZoom User Profile
site_id: StringZoom User Profile
status: Option<UserStatusRequestAction>Zoom User Profile
Trait Implementations
sourceimpl Clone for PhoneUserResponse
impl Clone for PhoneUserResponse
sourcefn clone(&self) -> PhoneUserResponse
fn clone(&self) -> PhoneUserResponse
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 PhoneUserResponse
impl Debug for PhoneUserResponse
sourceimpl<'de> Deserialize<'de> for PhoneUserResponse
impl<'de> Deserialize<'de> for PhoneUserResponse
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 PhoneUserResponse
impl JsonSchema for PhoneUserResponse
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<PhoneUserResponse> for PhoneUserResponse
impl PartialEq<PhoneUserResponse> for PhoneUserResponse
sourcefn eq(&self, other: &PhoneUserResponse) -> bool
fn eq(&self, other: &PhoneUserResponse) -> bool
sourceimpl Serialize for PhoneUserResponse
impl Serialize for PhoneUserResponse
impl StructuralPartialEq for PhoneUserResponse
Auto Trait Implementations
impl RefUnwindSafe for PhoneUserResponse
impl Send for PhoneUserResponse
impl Sync for PhoneUserResponse
impl Unpin for PhoneUserResponse
impl UnwindSafe for PhoneUserResponse
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