Struct rust_sc2::PlayerSettings[][src]

pub struct PlayerSettings<'a> {
    pub race: Race,
    pub name: Option<&'a str>,
    pub raw_affects_selection: bool,
    pub raw_crop_to_playable_area: bool,
}
Expand description

Settings that must be provided by a player when joining a game.

if name is None, it’ll be shown as “foo(whatever)” in game.

if raw_affects_selection is true, bot will select units to which it gives orders.

if raw_crop_to_playable_area is true, maps will be crooped to the size of self.game_info.playable_area.

Defaults: name: None raw_affects_selection: false raw_crop_to_playable_area: false

Fields

race: Racename: Option<&'a str>raw_affects_selection: boolraw_crop_to_playable_area: bool

Implementations

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

pub fn new(race: Race) -> Self[src]

Constructs new settings with given Race.

pub fn with_name(self, name: &'a str) -> Self[src]

Sets name of the player.

pub fn raw_affects_selection(self, val: bool) -> Self[src]

Sets raw_affects_selection to a given value.

pub fn raw_crop_to_playable_area(self, val: bool) -> Self[src]

Sets raw_crop_to_playable_area to a given value.

Trait Implementations

impl Default for PlayerSettings<'_>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

Auto Trait Implementations

impl<'a> RefUnwindSafe for PlayerSettings<'a>

impl<'a> Send for PlayerSettings<'a>

impl<'a> Sync for PlayerSettings<'a>

impl<'a> Unpin for PlayerSettings<'a>

impl<'a> UnwindSafe for PlayerSettings<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

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

pub fn vzip(self) -> V