[][src]Struct ts3_query::OnlineClientFull

pub struct OnlineClientFull {
    pub clid: ClientId,
    pub cid: ChannelId,
    pub client_database_id: ClientDBId,
    pub client_nickname: String,
    pub client_type: i8,
    pub client_away: bool,
    pub client_away_message: Option<String>,
    pub client_flag_talking: bool,
    pub client_input_muted: bool,
    pub client_output_muted: bool,
    pub client_input_hardware: bool,
    pub client_output_hardware: bool,
    pub client_talk_power: i32,
    pub client_is_talker: bool,
    pub client_is_priority_speaker: bool,
    pub client_is_recording: bool,
    pub client_is_channel_commander: bool,
    pub client_unique_identifier: String,
    pub client_servergroups: Vec<ServerGroupID>,
    pub client_channel_group_id: ChannelGroupId,
    pub client_channel_group_inherited_channel_id: ChannelGroupId,
    pub client_version: String,
    pub client_platform: String,
    pub client_idle_time: i64,
    pub client_created: i64,
    pub client_lastconnected: i64,
    pub client_country: String,
    pub connection_client_ip: String,
    pub client_badges: Option<String>,
}

Fields

clid: ClientIdcid: ChannelIdclient_database_id: ClientDBIdclient_nickname: Stringclient_type: i8

0 For normal client, 1 for query

client_away: boolclient_away_message: Option<String>client_flag_talking: boolclient_input_muted: boolclient_output_muted: boolclient_input_hardware: boolclient_output_hardware: boolclient_talk_power: i32client_is_talker: boolclient_is_priority_speaker: boolclient_is_recording: boolclient_is_channel_commander: boolclient_unique_identifier: Stringclient_servergroups: Vec<ServerGroupID>client_channel_group_id: ChannelGroupIdclient_channel_group_inherited_channel_id: ChannelGroupIdclient_version: Stringclient_platform: Stringclient_idle_time: i64client_created: i64client_lastconnected: i64client_country: Stringconnection_client_ip: Stringclient_badges: Option<String>

Trait Implementations

impl Debug for OnlineClientFull[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.