Struct sc2_proto::raw::ActionRawToggleAutocast[][src]

pub struct ActionRawToggleAutocast {
    pub ability_id: Option<i32>,
    pub unit_tags: Vec<u64>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

ability_id: Option<i32>unit_tags: Vec<u64>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl ActionRawToggleAutocast[src]

pub fn new() -> ActionRawToggleAutocast[src]

pub fn get_ability_id(&self) -> i32[src]

pub fn clear_ability_id(&mut self)[src]

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

pub fn set_ability_id(&mut self, v: i32)[src]

pub fn get_unit_tags(&self) -> &[u64][src]

pub fn clear_unit_tags(&mut self)[src]

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

pub fn mut_unit_tags(&mut self) -> &mut Vec<u64>[src]

pub fn take_unit_tags(&mut self) -> Vec<u64>[src]

Trait Implementations

impl Clear for ActionRawToggleAutocast[src]

impl Clone for ActionRawToggleAutocast[src]

impl Debug for ActionRawToggleAutocast[src]

impl Default for ActionRawToggleAutocast[src]

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

impl Message for ActionRawToggleAutocast[src]

impl PartialEq<ActionRawToggleAutocast> for ActionRawToggleAutocast[src]

impl ProtobufValue for ActionRawToggleAutocast[src]

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