Struct zoom_api::types::ListCallingPlansResponse
source · pub struct ListCallingPlansResponse {
pub assigned: i64,
pub available: i64,
pub name: String,
pub subscribed: i64,
pub type_: i64,
}Fields
assigned: i64Account seats.
available: i64Account seats.
name: StringUser’s first name.
subscribed: i64Account seats.
type_: i64Account seats.
Trait Implementations
sourceimpl Clone for ListCallingPlansResponse
impl Clone for ListCallingPlansResponse
sourcefn clone(&self) -> ListCallingPlansResponse
fn clone(&self) -> ListCallingPlansResponse
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 ListCallingPlansResponse
impl Debug for ListCallingPlansResponse
sourceimpl<'de> Deserialize<'de> for ListCallingPlansResponse
impl<'de> Deserialize<'de> for ListCallingPlansResponse
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 ListCallingPlansResponse
impl JsonSchema for ListCallingPlansResponse
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<ListCallingPlansResponse> for ListCallingPlansResponse
impl PartialEq<ListCallingPlansResponse> for ListCallingPlansResponse
sourcefn eq(&self, other: &ListCallingPlansResponse) -> bool
fn eq(&self, other: &ListCallingPlansResponse) -> bool
sourceimpl Serialize for ListCallingPlansResponse
impl Serialize for ListCallingPlansResponse
impl StructuralPartialEq for ListCallingPlansResponse
Auto Trait Implementations
impl RefUnwindSafe for ListCallingPlansResponse
impl Send for ListCallingPlansResponse
impl Sync for ListCallingPlansResponse
impl Unpin for ListCallingPlansResponse
impl UnwindSafe for ListCallingPlansResponse
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