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: String
User’s first name.
main_auto_receptionist: Option<GetSiteResponseMainAutoReceptionist>
Main Auto Receptionist for each site.
name: String
User’s first name.
short_extension: Option<ShortExtension>
Short extension of the phone site.
site_code: i64
Account seats.
Trait Implementations§
Source§impl Clone for GetSiteResponse
impl Clone for GetSiteResponse
Source§fn clone(&self) -> GetSiteResponse
fn clone(&self) -> GetSiteResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GetSiteResponse
impl Debug for GetSiteResponse
Source§impl<'de> Deserialize<'de> for GetSiteResponse
impl<'de> Deserialize<'de> for GetSiteResponse
Source§fn 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
Source§impl JsonSchema for GetSiteResponse
impl JsonSchema for GetSiteResponse
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn 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 moreSource§impl PartialEq for GetSiteResponse
impl PartialEq for GetSiteResponse
Source§impl Serialize for GetSiteResponse
impl Serialize for GetSiteResponse
impl StructuralPartialEq for GetSiteResponse
Auto Trait Implementations§
impl Freeze for GetSiteResponse
impl RefUnwindSafe for GetSiteResponse
impl Send for GetSiteResponse
impl Sync for GetSiteResponse
impl Unpin for GetSiteResponse
impl UnwindSafe for GetSiteResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more