Struct sc2_proto::ui::ControlGroup[][src]

pub struct ControlGroup {
    pub control_group_index: Option<u32>,
    pub leader_unit_type: Option<u32>,
    pub count: Option<u32>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

control_group_index: Option<u32>leader_unit_type: Option<u32>count: Option<u32>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl ControlGroup[src]

pub fn new() -> ControlGroup[src]

pub fn get_control_group_index(&self) -> u32[src]

pub fn clear_control_group_index(&mut self)[src]

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

pub fn set_control_group_index(&mut self, v: u32)[src]

pub fn get_leader_unit_type(&self) -> u32[src]

pub fn clear_leader_unit_type(&mut self)[src]

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

pub fn set_leader_unit_type(&mut self, v: u32)[src]

pub fn get_count(&self) -> u32[src]

pub fn clear_count(&mut self)[src]

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

pub fn set_count(&mut self, v: u32)[src]

Trait Implementations

impl Clear for ControlGroup[src]

impl Clone for ControlGroup[src]

impl Debug for ControlGroup[src]

impl Default for ControlGroup[src]

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

impl Message for ControlGroup[src]

impl PartialEq<ControlGroup> for ControlGroup[src]

impl ProtobufValue for ControlGroup[src]

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