Struct zoom_api::types::ForwardedBy
source · pub struct ForwardedBy {
pub extension_number: String,
pub extension_type: Option<PhoneUserCallLogsResponseForwardedByExtensionType>,
pub location: String,
pub name: String,
pub number_type: String,
pub phone_number: String,
}Expand description
Indicates where the call was forwarded from.
Fields
extension_number: StringIndicates where the call was forwarded from.
extension_type: Option<PhoneUserCallLogsResponseForwardedByExtensionType>Indicates where the call was forwarded from.
location: StringIndicates where the call was forwarded from.
name: StringIndicates where the call was forwarded from.
number_type: StringIndicates where the call was forwarded from.
phone_number: StringIndicates where the call was forwarded from.
Trait Implementations
sourceimpl Clone for ForwardedBy
impl Clone for ForwardedBy
sourcefn clone(&self) -> ForwardedBy
fn clone(&self) -> ForwardedBy
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 ForwardedBy
impl Debug for ForwardedBy
sourceimpl<'de> Deserialize<'de> for ForwardedBy
impl<'de> Deserialize<'de> for ForwardedBy
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 ForwardedBy
impl JsonSchema for ForwardedBy
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<ForwardedBy> for ForwardedBy
impl PartialEq<ForwardedBy> for ForwardedBy
sourcefn eq(&self, other: &ForwardedBy) -> bool
fn eq(&self, other: &ForwardedBy) -> bool
sourceimpl Serialize for ForwardedBy
impl Serialize for ForwardedBy
impl StructuralPartialEq for ForwardedBy
Auto Trait Implementations
impl RefUnwindSafe for ForwardedBy
impl Send for ForwardedBy
impl Sync for ForwardedBy
impl Unpin for ForwardedBy
impl UnwindSafe for ForwardedBy
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