Struct ts3::event::ClientEnterView

source ·
pub struct ClientEnterView {
Show 29 fields pub cfid: ChannelId, pub ctid: ChannelId, pub reasonid: ReasonId, pub clid: ClientId, pub client_unique_identifier: String, pub client_nickname: String, pub client_input_muted: bool, pub client_output_muted: bool, pub client_outputonly_muted: bool, pub client_input_hardware: u64, pub client_output_hardware: u64, pub client_is_recording: bool, pub client_database_id: ClientDatabaseId, pub client_channel_group_id: ChannelGroupId, pub client_servergroups: List<ServerGroupId, Comma>, pub client_away: bool, pub client_away_message: String, pub client_type: u8, pub client_talk_power: u64, pub client_talk_request: bool, pub client_talk_request_msg: String, pub client_description: String, pub client_is_talker: bool, pub client_nickname_phoentic: String, pub client_needed_serverquey_view_power: u64, pub client_icon_id: u64, pub client_country: String, pub client_channel_group_inherited_channel_id: u64, pub client_badges: String,
}
Expand description

Data for a cliententerview event.

Fields§

§cfid: ChannelId§ctid: ChannelId§reasonid: ReasonId§clid: ClientId§client_unique_identifier: String§client_nickname: String§client_input_muted: bool§client_output_muted: bool§client_outputonly_muted: bool§client_input_hardware: u64§client_output_hardware: u64§client_is_recording: bool§client_database_id: ClientDatabaseId§client_channel_group_id: ChannelGroupId§client_servergroups: List<ServerGroupId, Comma>§client_away: bool§client_away_message: String§client_type: u8§client_talk_power: u64§client_talk_request: bool§client_talk_request_msg: String§client_description: String§client_is_talker: bool§client_nickname_phoentic: String§client_needed_serverquey_view_power: u64§client_icon_id: u64§client_country: String§client_channel_group_inherited_channel_id: u64§client_badges: String

Trait Implementations§

source§

impl Debug for ClientEnterView

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Decode for ClientEnterView

§

type Error = Error

source§

fn decode(buf: &[u8]) -> Result<Self, Self::Error>

source§

impl Default for ClientEnterView

source§

fn default() -> ClientEnterView

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.