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

pub struct ClientUpdate {
    pub id: u32,
    pub name: String,
    pub company_id: u8,
}

Client update details on a specific client (e.g. after rename or move).

Fields

id: u32

ID of the client.

name: String

Name of the client.

company_id: u8

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

Trait Implementations

impl Eq for ClientUpdate[src]

impl PartialEq<ClientUpdate> for ClientUpdate[src]

impl Clone for ClientUpdate[src]

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

Performs copy-assignment from source. Read more

impl Debug for ClientUpdate[src]

impl Serialize for ClientUpdate[src]

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

Auto Trait Implementations

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]