Struct sc2_proto::sc2api::ResponseAction[][src]

pub struct ResponseAction {
    pub result: Vec<ActionResult>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

result: Vec<ActionResult>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl ResponseAction[src]

pub fn new() -> ResponseAction[src]

pub fn get_result(&self) -> &[ActionResult][src]

pub fn clear_result(&mut self)[src]

pub fn set_result(&mut self, v: Vec<ActionResult>)[src]

pub fn mut_result(&mut self) -> &mut Vec<ActionResult>[src]

pub fn take_result(&mut self) -> Vec<ActionResult>[src]

Trait Implementations

impl Clear for ResponseAction[src]

impl Clone for ResponseAction[src]

impl Debug for ResponseAction[src]

impl Default for ResponseAction[src]

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

impl Message for ResponseAction[src]

impl PartialEq<ResponseAction> for ResponseAction[src]

impl ProtobufValue for ResponseAction[src]

impl StructuralPartialEq for ResponseAction[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.