From 3a05288008c07503fd9882f4d7fb532fd9b0758d Mon Sep 17 00:00:00 2001 From: dabreegster Date: Thu, 3 Dec 2020 19:51:40 +0000 Subject: [PATCH] deploy: 23222bd84691563f6382cff31985fdf224b15297 --- rustdoc/experiment/all.html | 2 +- .../{game => buildings}/enum.BldgState.html | 12 +- rustdoc/experiment/buildings/index.html | 6 + rustdoc/experiment/buildings/sidebar-items.js | 1 + .../buildings/struct.Buildings.html | 37 ++ rustdoc/experiment/fn.main.html | 2 +- rustdoc/experiment/game/index.html | 7 +- rustdoc/experiment/game/sidebar-items.js | 2 +- .../game/struct.EnergylessArrow.html | 4 +- rustdoc/experiment/game/struct.Game.html | 8 +- rustdoc/experiment/game/struct.GameState.html | 13 +- rustdoc/experiment/index.html | 4 +- rustdoc/experiment/sidebar-items.js | 2 +- rustdoc/experiment/upzone/index.html | 2 +- rustdoc/experiment/upzone/struct.Picker.html | 4 +- .../built_info/constant.BUILT_TIME_UTC.html | 2 +- .../implementors/core/marker/trait.Freeze.js | 2 +- .../implementors/core/marker/trait.Send.js | 2 +- .../implementors/core/marker/trait.Sync.js | 2 +- .../implementors/core/marker/trait.Unpin.js | 2 +- .../std/panic/trait.RefUnwindSafe.js | 2 +- .../std/panic/trait.UnwindSafe.js | 2 +- rustdoc/search-index.js | 2 +- rustdoc/source-files.js | 2 +- rustdoc/src/experiment/buildings.rs.html | 188 +++++++++ rustdoc/src/experiment/game.rs.html | 376 ++---------------- rustdoc/src/experiment/lib.rs.html | 2 + rustdoc/src/experiment/upzone.rs.html | 202 +++++----- .../game-f38555f90777146b/out/built.rs.html | 2 +- 29 files changed, 391 insertions(+), 503 deletions(-) rename rustdoc/experiment/{game => buildings}/enum.BldgState.html (81%) create mode 100644 rustdoc/experiment/buildings/index.html create mode 100644 rustdoc/experiment/buildings/sidebar-items.js create mode 100644 rustdoc/experiment/buildings/struct.Buildings.html create mode 100644 rustdoc/src/experiment/buildings.rs.html diff --git a/rustdoc/experiment/all.html b/rustdoc/experiment/all.html index b5ec8c0577..71930c02d8 100644 --- a/rustdoc/experiment/all.html +++ b/rustdoc/experiment/all.html @@ -3,4 +3,4 @@

[] - List of all items

Structs

Enums

Functions

Constants

\ No newline at end of file + List of all items

Structs

Enums

Functions

Constants

\ No newline at end of file diff --git a/rustdoc/experiment/game/enum.BldgState.html b/rustdoc/experiment/buildings/enum.BldgState.html similarity index 81% rename from rustdoc/experiment/game/enum.BldgState.html rename to rustdoc/experiment/buildings/enum.BldgState.html index 1f3fec41a0..7a21b3ad22 100644 --- a/rustdoc/experiment/game/enum.BldgState.html +++ b/rustdoc/experiment/buildings/enum.BldgState.html @@ -1,15 +1,15 @@ -experiment::game::BldgState - Rust +experiment::buildings::BldgState - Rust -

[][src]Enum experiment::game::BldgState

enum BldgState {
+

[][src]Enum experiment::buildings::BldgState

pub enum BldgState {
     Undelivered(usize),
-    Depot,
+    Store,
     Done,
 }

Variants

-
Undelivered(usize)
Depot
Done

Trait Implementations

impl Clone for BldgState[src]