[][src]Struct rust_openttd_admin::packet::admin::server_packets::ClientInfo

pub struct ClientInfo {
    pub id: u32,
    pub address: String,
    pub name: String,
    pub language: u8,
    pub date_joined: Date,
    pub company_id: u8,
}

Client information of a specific client.

Fields

id: u32

ID of the client.

address: String

Network address of the client.

name: String

Name of the client.

language: u8

Language of the client.

date_joined: Date

Date the client joined the game.

company_id: u8

ID of the company the client is playing as (255 for spectators).

Trait Implementations

impl Eq for ClientInfo[src]

impl PartialEq<ClientInfo> for ClientInfo[src]

impl Clone for ClientInfo[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ClientInfo[src]

impl Serialize for ClientInfo[src]

impl<'de> Deserialize<'de> for ClientInfo[src]

Auto Trait Implementations

impl Send for ClientInfo

impl Sync for ClientInfo

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]