From 0116c3e526c651aa3dafda7016fea6e17cbe506f Mon Sep 17 00:00:00 2001 From: dabreegster Date: Wed, 16 Dec 2020 23:27:55 +0000 Subject: [PATCH] deploy: b39aa2a45fbed112abef8329871ff77755bc9232 --- .../built_info/constant.BUILT_TIME_UTC.html | 2 +- rustdoc/map_model/enum.PathConstraints.html | 54 +++++++++---------- .../pathfind/enum.PathConstraints.html | 54 +++++++++---------- .../pathfind/fn.validate_continuity.html | 2 +- .../pathfind/fn.validate_restrictions.html | 2 +- rustdoc/map_model/pathfind/index.html | 2 +- rustdoc/map_model/pathfind/struct.Path.html | 10 ++-- .../pathfind/struct.PathRequest.html | 20 +++---- rustdoc/map_model/struct.Path.html | 10 ++-- rustdoc/map_model/struct.PathRequest.html | 20 +++---- rustdoc/search-index.js | 4 +- rustdoc/sim/enum.DelayCause.html | 26 ++++----- .../sim/mechanics/walking/enum.PedState.html | 10 ++-- .../sim/mechanics/walking/fn.find_crowds.html | 2 +- rustdoc/sim/mechanics/walking/index.html | 2 +- .../mechanics/walking/struct.Pedestrian.html | 8 +-- .../walking/struct.WalkingSimState.html | 4 +- rustdoc/sim/sim/queries/enum.DelayCause.html | 26 ++++----- rustdoc/sim/sim/queries/index.html | 2 +- .../sim/queries/struct.AgentProperties.html | 2 +- rustdoc/sim/sim/struct.Sim.html | 2 +- rustdoc/sim/struct.AgentProperties.html | 2 +- rustdoc/sim/struct.PedestrianID.html | 2 +- rustdoc/sim/struct.Sim.html | 2 +- .../game-c1f324f9d3d7e3b2/out/built.rs.html | 2 +- rustdoc/src/game/info/trip.rs.html | 2 +- rustdoc/src/headless/main.rs.html | 2 +- rustdoc/src/map_model/pathfind/mod.rs.html | 6 ++- rustdoc/src/sim/mechanics/walking.rs.html | 42 ++++++++++++++- rustdoc/src/sim/sim/queries.rs.html | 6 +-- 30 files changed, 187 insertions(+), 143 deletions(-) diff --git a/rustdoc/game/pregame/built_info/constant.BUILT_TIME_UTC.html b/rustdoc/game/pregame/built_info/constant.BUILT_TIME_UTC.html index a585df656d..fe7fa8c867 100644 --- a/rustdoc/game/pregame/built_info/constant.BUILT_TIME_UTC.html +++ b/rustdoc/game/pregame/built_info/constant.BUILT_TIME_UTC.html @@ -1,5 +1,5 @@ game::pregame::built_info::BUILT_TIME_UTC - Rust

[][src]Constant game::pregame::built_info::BUILT_TIME_UTC

pub const BUILT_TIME_UTC: &str = "Wed, 16 Dec 2020 23:02:06 +0000";

The built-time in RFC2822, UTC

+ Change settings

[][src]Constant game::pregame::built_info::BUILT_TIME_UTC

pub const BUILT_TIME_UTC: &str = "Wed, 16 Dec 2020 23:25:27 +0000";

The built-time in RFC2822, UTC

\ No newline at end of file diff --git a/rustdoc/map_model/enum.PathConstraints.html b/rustdoc/map_model/enum.PathConstraints.html index 26537c0917..61e6883189 100644 --- a/rustdoc/map_model/enum.PathConstraints.html +++ b/rustdoc/map_model/enum.PathConstraints.html @@ -1,7 +1,7 @@ map_model::PathConstraints - Rust

[][src]Enum map_model::PathConstraints

pub enum PathConstraints {
+                Change settings

[][src]Enum map_model::PathConstraints

pub enum PathConstraints {
     Pedestrian,
     Car,
     Bike,
@@ -10,46 +10,46 @@
 }

Who's asking for a path?

Variants

-
Pedestrian
Car
Bike
Bus
Train

Implementations

impl PathConstraints[src]

pub fn all() -> Vec<PathConstraints>[src]

pub fn from_lt(lt: LaneType) -> PathConstraints[src]

Not bijective, but this is the best guess of user intent

-

pub fn can_use(self, l: &Lane, map: &Map) -> bool[src]

pub(crate) fn filter_lanes(self, choices: Vec<LaneID>, map: &Map) -> Vec<LaneID>[src]

Strict for bikes. If there are bike lanes, not allowed to use other lanes.

-

Trait Implementations

impl<O: Into<EnumSet<PathConstraints>>> BitAnd<O> for PathConstraints[src]

type Output = EnumSet<PathConstraints>

The resulting type after applying the & operator.

-

impl<O: Into<EnumSet<PathConstraints>>> BitOr<O> for PathConstraints[src]

type Output = EnumSet<PathConstraints>

The resulting type after applying the | operator.

-

impl<O: Into<EnumSet<PathConstraints>>> BitXor<O> for PathConstraints[src]

type Output = EnumSet<PathConstraints>

The resulting type after applying the ^ operator.

-

impl Clone for PathConstraints[src]