Struct rust_sc2::bot::CountOptions[][src]

pub struct CountOptions<'a> {
    pub completion: Completion,
    pub alias: UnitAlias,
    // some fields omitted
}

Options used to configure which units are counted. Constructed with counter and enemy_counter methods.

Fields

completion: Completion

State of counted units. Can be:

  • Complete - only complete units
  • Ordered - only units in progress
  • All - both compete and ordered units

[Default: Complete]

alias: UnitAlias

Alias of counted units. Can be:

  • None - don’t count alias
  • Unit - count unit-alias, used when unit has 2 forms
  • Tech - count tech-alias, used when unit has more than 2 forms (usually structures)

[Default: None]

Implementations

impl<'a> CountOptions<'a>[src]

pub fn ordered(&mut self) -> &mut Self[src]

Sets completion to Ordered.

pub fn all(&mut self) -> &mut Self[src]

Sets completion to All.

pub fn alias(&mut self) -> &mut Self[src]

Sets alias to Unit.

pub fn tech(&mut self) -> &mut Self[src]

Sets alias to Tech.

pub fn count(&self, unit_id: UnitTypeId) -> usize[src]

Counts units of given type and returns the result.

Trait Implementations

impl<'a> Clone for CountOptions<'a>[src]

impl<'a> Copy for CountOptions<'a>[src]

impl Debug for CountOptions<'_>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for CountOptions<'a>

impl<'a> !Send for CountOptions<'a>

impl<'a> !Sync for CountOptions<'a>

impl<'a> Unpin for CountOptions<'a>

impl<'a> !UnwindSafe for CountOptions<'a>

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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,