Struct zoom_api::types::GetSiteResponse
source · pub struct GetSiteResponse {
pub country: Option<Country>,
pub id: String,
pub main_auto_receptionist: Option<GetSiteResponseMainAutoReceptionist>,
pub name: String,
pub short_extension: Option<ShortExtension>,
pub site_code: i64,
}Fields
country: Option<Country>Site country
id: StringUser’s first name.
main_auto_receptionist: Option<GetSiteResponseMainAutoReceptionist>Main Auto Receptionist for each site.
name: StringUser’s first name.
short_extension: Option<ShortExtension>Short extension of the phone site.
site_code: i64Account seats.
Trait Implementations
sourceimpl Clone for GetSiteResponse
impl Clone for GetSiteResponse
sourcefn clone(&self) -> GetSiteResponse
fn clone(&self) -> GetSiteResponse
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 GetSiteResponse
impl Debug for GetSiteResponse
sourceimpl<'de> Deserialize<'de> for GetSiteResponse
impl<'de> Deserialize<'de> for GetSiteResponse
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 GetSiteResponse
impl JsonSchema for GetSiteResponse
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<GetSiteResponse> for GetSiteResponse
impl PartialEq<GetSiteResponse> for GetSiteResponse
sourcefn eq(&self, other: &GetSiteResponse) -> bool
fn eq(&self, other: &GetSiteResponse) -> bool
sourceimpl Serialize for GetSiteResponse
impl Serialize for GetSiteResponse
impl StructuralPartialEq for GetSiteResponse
Auto Trait Implementations
impl RefUnwindSafe for GetSiteResponse
impl Send for GetSiteResponse
impl Sync for GetSiteResponse
impl Unpin for GetSiteResponse
impl UnwindSafe for GetSiteResponse
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