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 duplicate 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 schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &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 for ParticipantQos
impl PartialEq for ParticipantQos
Source§impl Serialize for ParticipantQos
impl Serialize for ParticipantQos
impl StructuralPartialEq for ParticipantQos
Auto Trait Implementations§
impl Freeze for ParticipantQos
impl RefUnwindSafe for ParticipantQos
impl Send for ParticipantQos
impl Sync for ParticipantQos
impl Unpin for ParticipantQos
impl UnwindSafe for ParticipantQos
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more