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 unitsOrdered
- only units in progressAll
- both compete and ordered units
[Default: Complete
]
alias: UnitAlias
Alias of counted units. Can be:
None
- don’t count aliasUnit
- count unit-alias, used when unit has 2 formsTech
- 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]
fn clone(&self) -> CountOptions<'a>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,