Struct zoom_api::types::ParticipantQos
source · pub struct ParticipantQos {Show 13 fields
pub device: String,
pub domain: String,
pub harddisk_id: String,
pub ip_address: String,
pub join_time: Option<DateTime<Utc>>,
pub leave_time: Option<DateTime<Utc>>,
pub location: String,
pub mac_addr: String,
pub pc_name: String,
pub user_id: String,
pub user_name: String,
pub user_qos: Vec<UserQos>,
pub version: String,
}
Expand description
Participant QOS.
Fields§
§device: String
Participant QOS.
domain: String
Participant QOS.
harddisk_id: String
Participant QOS.
ip_address: String
Participant QOS.
join_time: Option<DateTime<Utc>>
Participant QOS.
leave_time: Option<DateTime<Utc>>
Participant QOS.
location: String
Participant QOS.
mac_addr: String
Participant QOS.
pc_name: String
Participant QOS.
user_id: String
Participant QOS.
user_name: String
Participant QOS.
user_qos: Vec<UserQos>
Participant QOS.
version: String
Participant QOS.
Trait Implementations§
source§impl Clone for ParticipantQos
impl Clone for ParticipantQos
source§fn clone(&self) -> ParticipantQos
fn clone(&self) -> ParticipantQos
Returns a copy 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 ParticipantQos
impl Debug for ParticipantQos
source§impl<'de> Deserialize<'de> for ParticipantQos
impl<'de> Deserialize<'de> for ParticipantQos
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 ParticipantQos
impl JsonSchema for ParticipantQos
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &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<ParticipantQos> for ParticipantQos
impl PartialEq<ParticipantQos> for ParticipantQos
source§fn eq(&self, other: &ParticipantQos) -> bool
fn eq(&self, other: &ParticipantQos) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.