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: StringParticipant QOS.
domain: StringParticipant QOS.
harddisk_id: StringParticipant QOS.
ip_address: StringParticipant QOS.
join_time: Option<DateTime<Utc>>Participant QOS.
leave_time: Option<DateTime<Utc>>Participant QOS.
location: StringParticipant QOS.
mac_addr: StringParticipant QOS.
pc_name: StringParticipant QOS.
user_id: StringParticipant QOS.
user_name: StringParticipant QOS.
user_qos: Vec<UserQos>Participant QOS.
version: StringParticipant QOS.
Trait Implementations
sourceimpl Clone for ParticipantQos
impl Clone for ParticipantQos
sourcefn clone(&self) -> ParticipantQos
fn clone(&self) -> ParticipantQos
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 ParticipantQos
impl Debug for ParticipantQos
sourceimpl<'de> Deserialize<'de> for ParticipantQos
impl<'de> Deserialize<'de> for ParticipantQos
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 ParticipantQos
impl JsonSchema for ParticipantQos
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<ParticipantQos> for ParticipantQos
impl PartialEq<ParticipantQos> for ParticipantQos
sourcefn eq(&self, other: &ParticipantQos) -> bool
fn eq(&self, other: &ParticipantQos) -> bool
sourceimpl Serialize for ParticipantQos
impl Serialize for ParticipantQos
impl StructuralPartialEq for ParticipantQos
Auto Trait Implementations
impl RefUnwindSafe for ParticipantQos
impl Send for ParticipantQos
impl Sync for ParticipantQos
impl Unpin for ParticipantQos
impl UnwindSafe for ParticipantQos
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