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

pub struct Chat {
    pub action: u8,
    pub destination: u8,
    pub client: u32,
    pub message: String,
    pub money: Option<u64>,
}

Send chat from the game into the admin network.

Fields

action: u8

Action such as NETWORK_ACTION_CHAT_CLIENT (see #NetworkAction).

destination: u8

Destination type such as DESTTYPE_BROADCAST (see #DestType).

client: u32

ID of the client who sent this message.

message: String

Message.

money: Option<u64>

Money (only when it is a 'give money' action).

Trait Implementations

impl PartialEq<Chat> for Chat[src]

impl Eq for Chat[src]

impl Clone for Chat[src]

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

Performs copy-assignment from source. Read more

impl Debug for Chat[src]

impl Serialize for Chat[src]

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

Auto Trait Implementations

impl Send for Chat

impl Sync for Chat

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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> 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> Any for T where
    T: 'static + ?Sized
[src]

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