Struct map_model::PathRequest [−][src]
pub struct PathRequest { pub start: Position, pub end: Position, pub constraints: PathConstraints, pub(crate) alt_start: Option<(Position, Duration)>, }
Fields
start: Position
end: Position
constraints: PathConstraints
alt_start: Option<(Position, Duration)>
Implementations
impl PathRequest
[src]
impl PathRequest
[src]pub fn between_buildings(
map: &Map,
from: BuildingID,
to: BuildingID,
constraints: PathConstraints
) -> Option<PathRequest>
[src]
map: &Map,
from: BuildingID,
to: BuildingID,
constraints: PathConstraints
) -> Option<PathRequest>
Determines the start and end position to travel between two buildings for a certain mode. The path won’t cover modality transfers – if somebody has to walk between the building and a parking spot or bikeable position, that won’t be captured here.
pub fn walking(start: Position, end: Position) -> PathRequest
[src]
The caller must pass in two valid sidewalk positions. This isn’t verified.
pub fn vehicle(
start: Position,
end: Position,
constraints: PathConstraints
) -> PathRequest
[src]
start: Position,
end: Position,
constraints: PathConstraints
) -> PathRequest
The caller must pass in two valid positions for the vehicle type. This isn’t verified. No off-side turns from driveways happen; the exact start position is used.
pub fn leave_from_driveway(
start: Position,
end: Position,
constraints: PathConstraints,
map: &Map
) -> PathRequest
[src]
start: Position,
end: Position,
constraints: PathConstraints,
map: &Map
) -> PathRequest
The caller must pass in two valid positions for the vehicle type. This isn’t verified. TODO The vehicle may cut exit the driveway onto the off-side of the road.
Trait Implementations
impl Clone for PathRequest
[src]
impl Clone for PathRequest
[src]fn clone(&self) -> PathRequest
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'de> Deserialize<'de> for PathRequest
[src]
impl<'de> Deserialize<'de> for PathRequest
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl PartialEq<PathRequest> for PathRequest
[src]
impl PartialEq<PathRequest> for PathRequest
[src]fn eq(&self, other: &PathRequest) -> bool
[src]
fn ne(&self, other: &PathRequest) -> bool
[src]
impl Serialize for PathRequest
[src]
impl Serialize for PathRequest
[src]impl Eq for PathRequest
[src]
impl StructuralEq for PathRequest
[src]
impl StructuralPartialEq for PathRequest
[src]
Auto Trait Implementations
impl RefUnwindSafe for PathRequest
impl Send for PathRequest
impl Sync for PathRequest
impl Unpin for PathRequest
impl UnwindSafe for PathRequest
Blanket Implementations
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]pub fn equivalent(&self, key: &K) -> bool
[src]
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,