Struct sc2_proto::sc2api::ActionChat[][src]

pub struct ActionChat {
    pub channel: Option<ActionChat_Channel>,
    pub message: SingularField<String>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

channel: Option<ActionChat_Channel>message: SingularField<String>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl ActionChat[src]

pub fn new() -> ActionChat[src]

pub fn get_channel(&self) -> ActionChat_Channel[src]

pub fn clear_channel(&mut self)[src]

pub fn has_channel(&self) -> bool[src]

pub fn set_channel(&mut self, v: ActionChat_Channel)[src]

pub fn get_message(&self) -> &str[src]

pub fn clear_message(&mut self)[src]

pub fn has_message(&self) -> bool[src]

pub fn set_message(&mut self, v: String)[src]

pub fn mut_message(&mut self) -> &mut String[src]

pub fn take_message(&mut self) -> String[src]

Trait Implementations

impl Clear for ActionChat[src]

impl Clone for ActionChat[src]

impl Debug for ActionChat[src]

impl Default for ActionChat[src]

impl<'a> Default for &'a ActionChat[src]

impl Message for ActionChat[src]

impl PartialEq<ActionChat> for ActionChat[src]

impl ProtobufValue for ActionChat[src]

impl StructuralPartialEq for ActionChat[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.