[][src]Struct screeps_api::MapStatsArgs

pub struct MapStatsArgs<'a, T, I> where
    I: AsRef<str>,
    T: 'a,
    &'a T: IntoIterator<Item = I>, 
{ /* fields omitted */ }

Arguments to a map stats call, holds a single value which can be iterated to get rooms.

Methods

impl<'a, T, I> MapStatsArgs<'a, T, I> where
    I: AsRef<str>,
    &'a T: IntoIterator<Item = I>, 
[src]

pub fn new(shard: &'a str, rooms: &'a T, stat: MapStatName) -> Self[src]

Creates a new MapStatsArgs with the given iterator.

Trait Implementations

impl<'a, T: Clone, I: Clone> Clone for MapStatsArgs<'a, T, I> where
    I: AsRef<str>,
    T: 'a,
    &'a T: IntoIterator<Item = I>, 
[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a, T: Debug, I: Debug> Debug for MapStatsArgs<'a, T, I> where
    I: AsRef<str>,
    T: 'a,
    &'a T: IntoIterator<Item = I>, 
[src]

impl<'a, T, I> Serialize for MapStatsArgs<'a, T, I> where
    I: AsRef<str>,
    T: 'a,
    &'a T: IntoIterator<Item = I>, 
[src]

Auto Trait Implementations

impl<'a, T, I> Unpin for MapStatsArgs<'a, T, I>

impl<'a, T, I> Sync for MapStatsArgs<'a, T, I> where
    T: Sync

impl<'a, T, I> Send for MapStatsArgs<'a, T, I> where
    T: Sync

impl<'a, T, I> RefUnwindSafe for MapStatsArgs<'a, T, I> where
    T: RefUnwindSafe

impl<'a, T, I> UnwindSafe for MapStatsArgs<'a, T, I> where
    T: RefUnwindSafe

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T

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