Struct zoom_api::types::VoiceMails
source · pub struct VoiceMails {
pub callee_name: String,
pub callee_number: String,
pub callee_number_type: String,
pub caller_name: String,
pub caller_number: String,
pub caller_number_type: String,
pub date_time: Option<NaiveDate>,
pub download_url: String,
pub duration: String,
pub id: String,
pub status: Option<PhoneUserVoiceMailsResponseStatus>,
}Fields
callee_name: StringUser’s first name.
callee_number: StringUser’s first name.
callee_number_type: StringUser’s first name.
caller_name: StringUser’s first name.
caller_number: StringUser’s first name.
caller_number_type: StringUser’s first name.
date_time: Option<NaiveDate>Start Date.
download_url: StringUser’s first name.
duration: StringUser’s first name.
id: StringUser’s first name.
status: Option<PhoneUserVoiceMailsResponseStatus>Status of the voice mail. Can be either ‘read’ or ‘unread’
Trait Implementations
sourceimpl Clone for VoiceMails
impl Clone for VoiceMails
sourcefn clone(&self) -> VoiceMails
fn clone(&self) -> VoiceMails
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 VoiceMails
impl Debug for VoiceMails
sourceimpl<'de> Deserialize<'de> for VoiceMails
impl<'de> Deserialize<'de> for VoiceMails
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 VoiceMails
impl JsonSchema for VoiceMails
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<VoiceMails> for VoiceMails
impl PartialEq<VoiceMails> for VoiceMails
sourcefn eq(&self, other: &VoiceMails) -> bool
fn eq(&self, other: &VoiceMails) -> bool
sourceimpl Serialize for VoiceMails
impl Serialize for VoiceMails
impl StructuralPartialEq for VoiceMails
Auto Trait Implementations
impl RefUnwindSafe for VoiceMails
impl Send for VoiceMails
impl Sync for VoiceMails
impl Unpin for VoiceMails
impl UnwindSafe for VoiceMails
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