From 86e68ce6171780056ea4c7b068816accba06cb3a Mon Sep 17 00:00:00 2001 From: dabreegster Date: Fri, 9 Oct 2020 23:15:05 +0000 Subject: [PATCH] deploy: 3feb9d6dbec47262639085ec9de95f35ad0d4eba --- rustdoc/game/all.html | 2 +- rustdoc/game/app/trait.ShowObject.html | 2 +- rustdoc/game/common/city_picker/index.html | 2 +- .../common/city_picker/struct.CityPicker.html | 2 +- rustdoc/game/debug/fn.calc_all_routes.html | 2 +- rustdoc/game/debug/fn.diff_tags.html | 2 +- rustdoc/game/debug/fn.find_bad_signals.html | 2 +- .../game/debug/fn.find_degenerate_roads.html | 2 +- .../debug/fn.find_large_intersections.html | 2 +- .../game/debug/fn.screenshot_everything.html | 2 +- rustdoc/game/debug/fn.search_osm.html | 2 +- rustdoc/game/debug/index.html | 2 +- rustdoc/game/debug/struct.Actions.html | 2 +- rustdoc/game/debug/struct.DebugMode.html | 2 +- rustdoc/game/debug/struct.ScreenshotTest.html | 4 +- rustdoc/game/debug/struct.SearchResults.html | 2 +- rustdoc/game/game/trait.State.html | 2 +- .../game/info/trait.ContextualActions.html | 2 +- rustdoc/game/load/index.html | 7 +- rustdoc/game/load/native_loader/index.html | 2 +- .../load/native_loader/struct.MapLoader.html | 4 +- rustdoc/game/load/sidebar-items.js | 2 +- .../game/load/struct.MapAlreadyLoaded.html | 20 +++++ .../built_info/constant.BUILT_TIME_UTC.html | 2 +- rustdoc/game/pregame/built_info/fn.time.html | 2 +- rustdoc/game/pregame/built_info/index.html | 2 +- rustdoc/game/pregame/index.html | 2 +- rustdoc/game/pregame/struct.About.html | 4 +- rustdoc/game/pregame/struct.MainMenu.html | 4 +- rustdoc/game/pregame/struct.Proposals.html | 4 +- rustdoc/game/pregame/struct.Screensaver.html | 4 +- rustdoc/game/pregame/struct.TitleScreen.html | 4 +- .../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/src/game/common/city_picker.rs.html | 14 ++- rustdoc/src/game/debug/mod.rs.html | 16 +++- .../game-e788b46a21eaee2a/out/built.rs.html | 2 +- rustdoc/src/game/load.rs.html | 42 +++++++++ rustdoc/src/game/pregame.rs.html | 88 +++++++++++-------- 44 files changed, 187 insertions(+), 90 deletions(-) create mode 100644 rustdoc/game/load/struct.MapAlreadyLoaded.html diff --git a/rustdoc/game/all.html b/rustdoc/game/all.html index 67197cbea5..6fa0f8ec69 100644 --- a/rustdoc/game/all.html +++ b/rustdoc/game/all.html @@ -1,4 +1,4 @@ List of all items in this crate

[] - List of all items

Structs

Enums

Traits

Functions

Typedefs

Constants

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

Structs

Enums

Traits

Functions

Typedefs

Constants

\ No newline at end of file diff --git a/rustdoc/game/app/trait.ShowObject.html b/rustdoc/game/app/trait.ShowObject.html index 137bde3a69..f55eeae2fe 100644 --- a/rustdoc/game/app/trait.ShowObject.html +++ b/rustdoc/game/app/trait.ShowObject.html @@ -4,4 +4,4 @@
fn layers(&self) -> &ShowLayers; }

Required methods

fn show(&self, obj: &ID) -> bool

fn layers(&self) -> &ShowLayers

Loading content... -

Implementors

impl ShowObject for ShowEverything[src]

impl ShowObject for DebugMode[src]

Loading content... \ No newline at end of file +

Implementors

impl ShowObject for ShowEverything[src]

impl ShowObject for DebugMode[src]

Loading content... \ No newline at end of file diff --git a/rustdoc/game/common/city_picker/index.html b/rustdoc/game/common/city_picker/index.html index 00c47bbfaf..79c0b1c50b 100644 --- a/rustdoc/game/common/city_picker/index.html +++ b/rustdoc/game/common/city_picker/index.html @@ -1,3 +1,3 @@ game::common::city_picker - Rust

[][src]Module game::common::city_picker

Structs

+ Change settings

[][src]Module game::common::city_picker

Structs

CityPicker
\ No newline at end of file diff --git a/rustdoc/game/common/city_picker/struct.CityPicker.html b/rustdoc/game/common/city_picker/struct.CityPicker.html index 3ae8578a8a..5f6abbab61 100644 --- a/rustdoc/game/common/city_picker/struct.CityPicker.html +++ b/rustdoc/game/common/city_picker/struct.CityPicker.html @@ -5,7 +5,7 @@ selected: Option<usize>, on_load: Box<dyn Fn(&mut EventCtx<'_>, &mut App) -> Transition>, }

- Fields

panel: Panelregions: Vec<(String, Color, Polygon)>selected: Option<usize>on_load: Box<dyn Fn(&mut EventCtx<'_>, &mut App) -> Transition>

Implementations

impl CityPicker[src]

pub fn new(
    ctx: &mut EventCtx<'_>,
    app: &mut App,
    on_load: Box<dyn Fn(&mut EventCtx<'_>, &mut App) -> Transition>
) -> Box<dyn State>
[src]

Trait Implementations

impl State for CityPicker[src]

Auto Trait Implementations

Blanket Implementations

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

[][src]Function game::debug::find_degenerate_roads

fn find_degenerate_roads(app: &App)
\ No newline at end of file diff --git a/rustdoc/game/debug/fn.find_large_intersections.html b/rustdoc/game/debug/fn.find_large_intersections.html index b1825ca8bb..65414a873e 100644 --- a/rustdoc/game/debug/fn.find_large_intersections.html +++ b/rustdoc/game/debug/fn.find_large_intersections.html @@ -1,2 +1,2 @@ game::debug::find_large_intersections - Rust

[][src]Function game::debug::find_large_intersections

fn find_large_intersections(app: &App)
\ No newline at end of file + Change settings

[][src]Function game::debug::find_large_intersections

fn find_large_intersections(app: &App)
\ No newline at end of file diff --git a/rustdoc/game/debug/fn.screenshot_everything.html b/rustdoc/game/debug/fn.screenshot_everything.html index b3e05c313b..0cfbd5dcef 100644 --- a/rustdoc/game/debug/fn.screenshot_everything.html +++ b/rustdoc/game/debug/fn.screenshot_everything.html @@ -1,2 +1,2 @@ game::debug::screenshot_everything - Rust

[][src]Function game::debug::screenshot_everything

fn screenshot_everything(ctx: &mut EventCtx<'_>, app: &App)
\ No newline at end of file + Change settings

[][src]Function game::debug::screenshot_everything

fn screenshot_everything(ctx: &mut EventCtx<'_>, app: &App)
\ No newline at end of file diff --git a/rustdoc/game/debug/fn.search_osm.html b/rustdoc/game/debug/fn.search_osm.html index 58f29d06df..55470625dc 100644 --- a/rustdoc/game/debug/fn.search_osm.html +++ b/rustdoc/game/debug/fn.search_osm.html @@ -1,2 +1,2 @@ game::debug::search_osm - Rust

[][src]Function game::debug::search_osm

fn search_osm(
    filter: String,
    ctx: &mut EventCtx<'_>,
    app: &mut App
) -> Transition
\ No newline at end of file + Change settings

[][src]Function game::debug::search_osm

fn search_osm(
    filter: String,
    ctx: &mut EventCtx<'_>,
    app: &mut App
) -> Transition
\ No newline at end of file diff --git a/rustdoc/game/debug/index.html b/rustdoc/game/debug/index.html index 38c46d238a..5d4fbafeab 100644 --- a/rustdoc/game/debug/index.html +++ b/rustdoc/game/debug/index.html @@ -1,5 +1,5 @@ game::debug - Rust

[][src]Module game::debug

Modules

+ Change settings

[][src]Module game::debug

Modules

floodfill
objects
path_counter
polygons
shared_row

Structs

Actions
DebugMode
ScreenshotTest
SearchResults

Functions

calc_all_routes
diff_tags
find_bad_signals
find_degenerate_roads
find_large_intersections
screenshot_everything
search_osm
\ No newline at end of file diff --git a/rustdoc/game/debug/struct.Actions.html b/rustdoc/game/debug/struct.Actions.html index 88ca1b30d0..3647601ce3 100644 --- a/rustdoc/game/debug/struct.Actions.html +++ b/rustdoc/game/debug/struct.Actions.html @@ -1,5 +1,5 @@ game::debug::Actions - Rust

[][src]Struct game::debug::Actions

struct Actions;

Trait Implementations

impl ContextualActions for Actions[src]

Auto Trait Implementations

impl RefUnwindSafe for Actions

impl Send for Actions

impl Sync for Actions

impl Unpin for Actions

impl UnwindSafe for Actions

Blanket Implementations

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

[][src]Struct game::debug::Actions

struct Actions;

Trait Implementations

impl ContextualActions for Actions[src]

Auto Trait Implementations

impl RefUnwindSafe for Actions

impl Send for Actions

impl Sync for Actions

impl Unpin for Actions

impl UnwindSafe for Actions

Blanket Implementations

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

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

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

impl<T> Downcast for T where
    T: Any

- Fields

panel: Panelcommon: CommonStatetool_panel: Panelobjects: ObjectDebuggerhidden: HashSet<ID>layers: ShowLayerssearch_results: Option<SearchResults>all_routes: Option<(usize, Drawable)>highlighted_agents: Option<(ID, Drawable)>

Implementations

impl DebugMode[src]

pub fn new(ctx: &mut EventCtx<'_>) -> Box<dyn State>[src]

fn reset_info(&mut self, ctx: &mut EventCtx<'_>)[src]

Trait Implementations

impl ShowObject for DebugMode[src]

impl State for DebugMode[src]

Auto Trait Implementations

impl !RefUnwindSafe for DebugMode

impl !Send for DebugMode

impl !Sync for DebugMode

impl Unpin for DebugMode

impl !UnwindSafe for DebugMode

Blanket Implementations

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

\ No newline at end of file +

Implementors

impl ContextualActions for game::debug::Actions[src]

impl ContextualActions for game::sandbox::Actions[src]

Loading content...
\ No newline at end of file diff --git a/rustdoc/game/load/index.html b/rustdoc/game/load/index.html index 68bc631e87..83d217c649 100644 --- a/rustdoc/game/load/index.html +++ b/rustdoc/game/load/index.html @@ -1,6 +1,7 @@ -game::load - Rust

[][src]Module game::load

Loading large resources (like maps, scenarios, and prebaked data) requires different strategies +game::load - Rust

[][src]Module game::load

Loading large resources (like maps, scenarios, and prebaked data) requires different strategies on native and web. Both cases are wrapped up as a State that runs a callback when done.

Re-exports

pub use native_loader::MapLoader;

Modules

-
native_loader
\ No newline at end of file +
native_loader

Structs

+
MapAlreadyLoaded
\ No newline at end of file diff --git a/rustdoc/game/load/native_loader/index.html b/rustdoc/game/load/native_loader/index.html index e21fea24a6..a74f012d05 100644 --- a/rustdoc/game/load/native_loader/index.html +++ b/rustdoc/game/load/native_loader/index.html @@ -1,3 +1,3 @@ game::load::native_loader - Rust

[][src]Module game::load::native_loader

Structs

+ Change settings

[][src]Module game::load::native_loader

Structs

MapLoader
\ No newline at end of file diff --git a/rustdoc/game/load/native_loader/struct.MapLoader.html b/rustdoc/game/load/native_loader/struct.MapLoader.html index 8dc6215cc9..57d2240387 100644 --- a/rustdoc/game/load/native_loader/struct.MapLoader.html +++ b/rustdoc/game/load/native_loader/struct.MapLoader.html @@ -1,9 +1,9 @@ game::load::native_loader::MapLoader - Rust

[][src]Struct game::load::native_loader::MapLoader

pub struct MapLoader {
+                Change settings

[][src]Struct game::load::native_loader::MapLoader

pub struct MapLoader {
     name: String,
     on_load: Box<dyn Fn(&mut EventCtx<'_>, &mut App) -> Transition>,
 }

- Fields

name: Stringon_load: Box<dyn Fn(&mut EventCtx<'_>, &mut App) -> Transition>

Implementations

impl MapLoader[src]

pub fn new(
    _: &mut EventCtx<'_>,
    name: String,
    on_load: Box<dyn Fn(&mut EventCtx<'_>, &mut App) -> Transition>
) -> Box<dyn State>
[src]

Trait Implementations

impl State for MapLoader[src]

Auto Trait Implementations

impl !RefUnwindSafe for MapLoader

impl !Send for MapLoader

impl !Sync for MapLoader

impl Unpin for MapLoader

impl !UnwindSafe for MapLoader

Blanket Implementations

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