[][src]Enum screeps_api::websocket::objects::StructureType

pub enum StructureType {
    Spawn,
    Extension,
    Road,
    ConstructedWall,
    Rampart,
    KeeperLair,
    Portal,
    Controller,
    Link,
    Storage,
    Tower,
    Observer,
    PowerBank,
    PowerSpawn,
    Extractor,
    Lab,
    Terminal,
    Container,
    Nuker,
}

Type of structure (not general room object).

Currently only used when decoding ConstructionSites.

Variants

Spawn

StructureSpawn structure type

Extension

StructureExtension structure type

Road

Road structure type

ConstructedWall

StructureWall structure type

Rampart

StructureRampart structure type

KeeperLair

StructureKeeperLair structure type

Portal

StructurePortal structure type

Controller

StructureController structure type

Link

StructureLink structure type

Storage

StructureStorage structure type

Tower

StructureTower structure type

Observer

StructureObserver structure type

PowerBank

StructurePowerBank structure type

PowerSpawn

StructurePowerSpawn structure type

Extractor

StructureExtractor structure type

Lab

StructureLab structure type

Terminal

StructureTerminal structure type

Container

StructureContainer structure type

Nuker

StructureNuker structure type

Trait Implementations

impl PartialEq<StructureType> for StructureType[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Clone for StructureType[src]

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

Performs copy-assignment from source. Read more

impl Eq for StructureType[src]

impl Debug for StructureType[src]

impl<'de> Deserialize<'de> for StructureType[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T

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