pub struct Phones {Show 17 fields
pub authorization_name: String,
pub domain: String,
pub id: String,
pub password: String,
pub proxy_server: String,
pub proxy_server_2: String,
pub proxy_server_3: String,
pub register_server: String,
pub register_server_2: String,
pub register_server_3: String,
pub registration_expire_time: i64,
pub transport_protocol: Option<TransportProtocol>,
pub transport_protocol_2: Option<TransportProtocol>,
pub transport_protocol_3: Option<TransportProtocol>,
pub user_email: String,
pub user_name: String,
pub voice_mail: String,
}Fields
User’s first name.
domain: StringUser’s first name.
id: StringUser’s first name.
password: StringUser’s first name.
proxy_server: StringUser’s first name.
proxy_server_2: StringUser’s first name.
proxy_server_3: StringUser’s first name.
register_server: StringUser’s first name.
register_server_2: StringUser’s first name.
register_server_3: StringUser’s first name.
registration_expire_time: i64Account seats.
transport_protocol: Option<TransportProtocol>Protocols supported by the SIP provider.
The value must be either UDP, TCP, TLS, AUTO.
transport_protocol_2: Option<TransportProtocol>Protocols supported by the SIP provider.
The value must be either UDP, TCP, TLS, AUTO.
transport_protocol_3: Option<TransportProtocol>Protocols supported by the SIP provider.
The value must be either UDP, TCP, TLS, AUTO.
user_email: StringUser’s first name.
user_name: StringUser’s first name.
voice_mail: StringUser’s first name.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Phones
impl<'de> Deserialize<'de> for Phones
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 Phones
impl JsonSchema for Phones
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 moreimpl StructuralPartialEq for Phones
Auto Trait Implementations
impl RefUnwindSafe for Phones
impl Send for Phones
impl Sync for Phones
impl Unpin for Phones
impl UnwindSafe for Phones
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