[][src]Struct screeps_api::websocket::RoomMapViewUpdate

pub struct RoomMapViewUpdate {
    pub walls: Vec<(u32, u32)>,
    pub roads: Vec<(u32, u32)>,
    pub power_or_power_bank: Vec<(u32, u32)>,
    pub portals: Vec<(u32, u32)>,
    pub sources: Vec<(u32, u32)>,
    pub minerals: Vec<(u32, u32)>,
    pub controllers: Vec<(u32, u32)>,
    pub keeper_lairs: Vec<(u32, u32)>,
    pub users_objects: Vec<(String, Vec<(u32, u32)>)>,
    // some fields omitted
}

"Map view" room status update. This contains all entities in a given room, organized by what type of thing they are, or who owns them.

Fields

walls: Vec<(u32, u32)>

Constructed walls in the room. Does not include terrain.

roads: Vec<(u32, u32)>

All roads in the room.

power_or_power_bank: Vec<(u32, u32)>

All power banks and dropped power in the room.

portals: Vec<(u32, u32)>

All portal squares in the room.

sources: Vec<(u32, u32)>

All energy sources in the room.

minerals: Vec<(u32, u32)>

All mineral deposits in the room.

controllers: Vec<(u32, u32)>

All controllers in the room.

keeper_lairs: Vec<(u32, u32)>

All keeper's lairs in the room.

users_objects: Vec<(String, Vec<(u32, u32)>)>

All users who own objects in the room along with all owned objects for each user.

This is a Vec of (user_id, owned_objects_of_that_user). The game does not provide more information on what type of object (creep or building, or type of building).

Trait Implementations

impl Clone for RoomMapViewUpdate[src]

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

Performs copy-assignment from source. Read more

impl Default for RoomMapViewUpdate[src]

impl Debug for RoomMapViewUpdate[src]

impl Hash for RoomMapViewUpdate[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<'de> Deserialize<'de> for RoomMapViewUpdate[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

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