abstreet/rustdoc/map_model/struct.Map.html

80 lines
124 KiB
HTML
Raw Normal View History

<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="API documentation for the Rust `Map` struct in crate `map_model`."><meta name="keywords" content="rust, rustlang, rust-lang, Map"><title>Map in map_model - Rust</title><link rel="stylesheet" type="text/css" href="../normalize.css"><link rel="stylesheet" type="text/css" href="../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" type="text/css" href="../light.css" id="themeStyle"><link rel="stylesheet" type="text/css" href="../dark.css" disabled ><link rel="stylesheet" type="text/css" href="../ayu.css" disabled ><script id="default-settings"></script><script src="../storage.js"></script><script src="../crates.js"></script><noscript><link rel="stylesheet" href="../noscript.css"></noscript><link rel="icon" type="image/svg+xml" href="../favicon.svg">
<link rel="alternate icon" type="image/png" href="../favicon-16x16.png">
<link rel="alternate icon" type="image/png" href="../favicon-32x32.png"><style type="text/css">#crate-search{background-image:url("../down-arrow.svg");}</style></head><body class="rustdoc struct"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="sidebar"><div class="sidebar-menu" role="button">&#9776;</div><a href='../map_model/index.html'><div class='logo-container rust-logo'><img src='../rust-logo.png' alt='logo'></div></a><h2 class="location">Struct Map</h2><div class="sidebar-elems"><div class="block items"><h3 class="sidebar-title"><a href="#fields">Fields</a></h3><div class="sidebar-links"><a href="#structfield.areas">areas</a><a href="#structfield.boundary_polygon">boundary_polygon</a><a href="#structfield.bounds">bounds</a><a href="#structfield.buildings">buildings</a><a href="#structfield.bus_routes">bus_routes</a><a href="#structfield.bus_stops">bus_stops</a><a href="#structfield.config">config</a><a href="#structfield.edits">edits</a><a href="#structfield.edits_generation">edits_generation</a><a href="#structfield.gps_bounds">gps_bounds</a><a href="#structfield.intersections">intersections</a><a href="#structfield.lane_id_counter">lane_id_counter</a><a href="#structfield.lanes">lanes</a><a href="#structfield.name">name</a><a href="#structfield.parking_lots">parking_lots</a><a href="#structfield.pathfinder">pathfinder</a><a href="#structfield.pathfinder_dirty">pathfinder_dirty</a><a href="#structfield.road_to_buildings">road_to_buildings</a><a href="#structfield.roads">roads</a><a href="#structfield.routing_params">routing_params</a><a href="#structfield.stop_signs">stop_signs</a><a href="#structfield.traffic_signals">traffic_signals</a><a href="#structfield.zones">zones</a></div><h3 class="sidebar-title"><a href="#implementations">Methods</a></h3><div class="sidebar-links"><a href="#method.all_areas">all_areas</a><a href="#method.all_buildings">all_buildings</a><a href="#method.all_bus_routes">all_bus_routes</a><a href="#method.all_bus_stops">all_bus_stops</a><a href="#method.all_costs_from">all_costs_from</a><a href="#method.all_incoming_borders">all_incoming_borders</a><a href="#method.all_intersections">all_intersections</a><a href="#method.all_lanes">all_lanes</a><a href="#method.all_outgoing_borders">all_outgoing_borders</a><a href="#method.all_parking_lots">all_parking_lots</a><a href="#method.all_roads">all_roads</a><a href="#method.all_turns">all_turns</a><a href="#method.all_zones">all_zones</a><a href="#method.apply_edits">apply_edits</a><a href="#method.blank">blank</a><a href="#method.building_to_road">building_to_road</a><a href="#method.create_from_raw">create_from_raw</a><a href="#method.edit_road_cmd">edit_road_cmd</a><a href="#method.find_b_by_osm_id">find_b_by_osm_id</a><a href="#method.find_br">find_br</a><a href="#method.find_driving_lane_near_building">find_driving_lane_near_building</a><a href="#method.find_i_by_osm_id">find_i_by_osm_id</a><a href="#method.find_r_by_osm_id">find_r_by_osm_id</a><a href="#method.find_road_between">find_road_between</a><a href="#method.get_a">get_a</a><a href="#method.get_b">get_b</a><a href="#method.get_boundary_polygon">get_boundary_polygon</a><a href="#method.get_bounds">get_bounds</a><a href="#method.get_br">get_br</a><a href="#method.get_bs">get_bs</a><a href="#method.get_bus_route">get_bus_route</a><a href="#method.get_city_name">get_city_name</a><a href="#method.get_config">get_config</a><a href="#method.get_edits">get_edits</a><a href="#method.get_edits_change_key">get_edits_change_key</a><a href="#method.get_gps_bounds">get_gps_bounds</a><a href="#method.get_i">get_i</a><a href="#method.get_i_edit">get_i_edit</a><a href="#method.get_l">get_l</a><a href="#method.get_languages">get_languages</a><a href="#method.get_movement">get_movement</a><a href="#method.get_movements_for">get_movements_for</a><a href="#method.get_name">get_name</a><a href="#method.get_next_roads">get_next_roads</a><a href="#method.get_next_turns_and_lanes">get_next_turns_and_lanes</a><a
roads: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/road/struct.Road.html" title="struct map_model::objects::road::Road">Road</a>&gt;,
lanes: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/collections/btree/map/struct.BTreeMap.html" title="struct alloc::collections::btree::map::BTreeMap">BTreeMap</a>&lt;<a class="struct" href="objects/lane/struct.LaneID.html" title="struct map_model::objects::lane::LaneID">LaneID</a>, <a class="struct" href="objects/lane/struct.Lane.html" title="struct map_model::objects::lane::Lane">Lane</a>&gt;,
lane_id_counter: <a class="primitive" href="https://doc.rust-lang.org/1.54.0/std/primitive.usize.html">usize</a>,
intersections: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/intersection/struct.Intersection.html" title="struct map_model::objects::intersection::Intersection">Intersection</a>&gt;,
buildings: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/building/struct.Building.html" title="struct map_model::objects::building::Building">Building</a>&gt;,
bus_stops: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/collections/btree/map/struct.BTreeMap.html" title="struct alloc::collections::btree::map::BTreeMap">BTreeMap</a>&lt;<a class="struct" href="objects/bus_stop/struct.BusStopID.html" title="struct map_model::objects::bus_stop::BusStopID">BusStopID</a>, <a class="struct" href="objects/bus_stop/struct.BusStop.html" title="struct map_model::objects::bus_stop::BusStop">BusStop</a>&gt;,
bus_routes: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/bus_stop/struct.BusRoute.html" title="struct map_model::objects::bus_stop::BusRoute">BusRoute</a>&gt;,
areas: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/area/struct.Area.html" title="struct map_model::objects::area::Area">Area</a>&gt;,
parking_lots: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/parking_lot/struct.ParkingLot.html" title="struct map_model::objects::parking_lot::ParkingLot">ParkingLot</a>&gt;,
boundary_polygon: <a class="struct" href="../geom/polygon/struct.Polygon.html" title="struct geom::polygon::Polygon">Polygon</a>,
stop_signs: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/collections/btree/map/struct.BTreeMap.html" title="struct alloc::collections::btree::map::BTreeMap">BTreeMap</a>&lt;<a class="struct" href="objects/intersection/struct.IntersectionID.html" title="struct map_model::objects::intersection::IntersectionID">IntersectionID</a>, <a class="struct" href="objects/stop_signs/struct.ControlStopSign.html" title="struct map_model::objects::stop_signs::ControlStopSign">ControlStopSign</a>&gt;,
traffic_signals: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/collections/btree/map/struct.BTreeMap.html" title="struct alloc::collections::btree::map::BTreeMap">BTreeMap</a>&lt;<a class="struct" href="objects/intersection/struct.IntersectionID.html" title="struct map_model::objects::intersection::IntersectionID">IntersectionID</a>, <a class="struct" href="objects/traffic_signals/struct.ControlTrafficSignal.html" title="struct map_model::objects::traffic_signals::ControlTrafficSignal">ControlTrafficSignal</a>&gt;,
gps_bounds: <a class="struct" href="../geom/bounds/struct.GPSBounds.html" title="struct geom::bounds::GPSBounds">GPSBounds</a>,
bounds: <a class="struct" href="../geom/bounds/struct.Bounds.html" title="struct geom::bounds::Bounds">Bounds</a>,
config: <a class="struct" href="map/struct.MapConfig.html" title="struct map_model::map::MapConfig">MapConfig</a>,
pathfinder: <a class="struct" href="pathfind/pathfinder/struct.Pathfinder.html" title="struct map_model::pathfind::pathfinder::Pathfinder">Pathfinder</a>,
pathfinder_dirty: <a class="primitive" href="https://doc.rust-lang.org/1.54.0/std/primitive.bool.html">bool</a>,
routing_params: <a class="struct" href="pathfind/struct.RoutingParams.html" title="struct map_model::pathfind::RoutingParams">RoutingParams</a>,
zones: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/zone/struct.Zone.html" title="struct map_model::objects::zone::Zone">Zone</a>&gt;,
name: <a class="struct" href="../abstio/abst_paths/struct.MapName.html" title="struct abstio::abst_paths::MapName">MapName</a>,
edits: <a class="struct" href="edits/struct.MapEdits.html" title="struct map_model::edits::MapEdits">MapEdits</a>,
edits_generation: <a class="primitive" href="https://doc.rust-lang.org/1.54.0/std/primitive.usize.html">usize</a>,
road_to_buildings: <a class="struct" href="../abstutil/collections/struct.MultiMap.html" title="struct abstutil::collections::MultiMap">MultiMap</a>&lt;<a class="struct" href="objects/road/struct.RoadID.html" title="struct map_model::objects::road::RoadID">RoadID</a>, <a class="struct" href="objects/building/struct.BuildingID.html" title="struct map_model::objects::building::BuildingID">BuildingID</a>&gt;,
</details>}</pre></div><h2 id="fields" class="fields small-section-header">
Fields<a href="#fields" class="anchor"></a></h2><span id="structfield.roads" class="structfield small-section-header"><a href="#structfield.roads" class="anchor field"></a><code>roads: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/road/struct.Road.html" title="struct map_model::objects::road::Road">Road</a>&gt;</code></span><span id="structfield.lanes" class="structfield small-section-header"><a href="#structfield.lanes" class="anchor field"></a><code>lanes: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/collections/btree/map/struct.BTreeMap.html" title="struct alloc::collections::btree::map::BTreeMap">BTreeMap</a>&lt;<a class="struct" href="objects/lane/struct.LaneID.html" title="struct map_model::objects::lane::LaneID">LaneID</a>, <a class="struct" href="objects/lane/struct.Lane.html" title="struct map_model::objects::lane::Lane">Lane</a>&gt;</code></span><span id="structfield.lane_id_counter" class="structfield small-section-header"><a href="#structfield.lane_id_counter" class="anchor field"></a><code>lane_id_counter: <a class="primitive" href="https://doc.rust-lang.org/1.54.0/std/primitive.usize.html">usize</a></code></span><span id="structfield.intersections" class="structfield small-section-header"><a href="#structfield.intersections" class="anchor field"></a><code>intersections: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/intersection/struct.Intersection.html" title="struct map_model::objects::intersection::Intersection">Intersection</a>&gt;</code></span><span id="structfield.buildings" class="structfield small-section-header"><a href="#structfield.buildings" class="anchor field"></a><code>buildings: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/building/struct.Building.html" title="struct map_model::objects::building::Building">Building</a>&gt;</code></span><span id="structfield.bus_stops" class="structfield small-section-header"><a href="#structfield.bus_stops" class="anchor field"></a><code>bus_stops: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/collections/btree/map/struct.BTreeMap.html" title="struct alloc::collections::btree::map::BTreeMap">BTreeMap</a>&lt;<a class="struct" href="objects/bus_stop/struct.BusStopID.html" title="struct map_model::objects::bus_stop::BusStopID">BusStopID</a>, <a class="struct" href="objects/bus_stop/struct.BusStop.html" title="struct map_model::objects::bus_stop::BusStop">BusStop</a>&gt;</code></span><span id="structfield.bus_routes" class="structfield small-section-header"><a href="#structfield.bus_routes" class="anchor field"></a><code>bus_routes: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/bus_stop/struct.BusRoute.html" title="struct map_model::objects::bus_stop::BusRoute">BusRoute</a>&gt;</code></span><span id="structfield.areas" class="structfield small-section-header"><a href="#structfield.areas" class="anchor field"></a><code>areas: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/area/struct.Area.html" title="struct map_model::objects::area::Area">Area</a>&gt;</code></span><span id="structfield.parking_lots" class="structfield small-section-header"><a href="#structfield.parking_lots" class="anchor field"></a><code>parking_lots: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/parking_lot/struct.ParkingLot.html" title="struct map_model::objects::parking_lot::ParkingLot">ParkingLot</a>&gt;</code></span><span id="structfield.boundary_polygon" class="structfield
</div></details><div id="method.save_edits" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.save_edits" class="fnname">save_edits</a>(&amp;self)</h4><a href="#method.save_edits" class="anchor"></a><a class="srclink" href="../src/map_model/edits/mod.rs.html#835-842" title="goto source code">[src]</a></div><details class="rustdoc-toggle method-toggle" open><summary><div id="method.must_apply_edits" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.must_apply_edits" class="fnname">must_apply_edits</a>(&amp;mut self, new_edits: <a class="struct" href="edits/struct.MapEdits.html" title="struct map_model::edits::MapEdits">MapEdits</a>) -&gt; <a class="struct" href="edits/struct.EditEffects.html" title="struct map_model::edits::EditEffects">EditEffects</a></h4><a href="#method.must_apply_edits" class="anchor"></a><a class="srclink" href="../src/map_model/edits/mod.rs.html#845-847" title="goto source code">[src]</a></div></summary><div class="docblock"><p>Returns (changed_roads, deleted_lanes, deleted_turns, added_turns, changed_intersections)</p>
</div></details><div id="method.try_apply_edits" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.try_apply_edits" class="fnname">try_apply_edits</a>(&amp;mut self, new_edits: <a class="struct" href="edits/struct.MapEdits.html" title="struct map_model::edits::MapEdits">MapEdits</a>)</h4><a href="#method.try_apply_edits" class="anchor"></a><a class="srclink" href="../src/map_model/edits/mod.rs.html#849-851" title="goto source code">[src]</a></div><div id="method.apply_edits" class="method has-srclink"><h4 class="code-header">fn <a href="#method.apply_edits" class="fnname">apply_edits</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;new_edits: <a class="struct" href="edits/struct.MapEdits.html" title="struct map_model::edits::MapEdits">MapEdits</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;enforce_valid: <a class="primitive" href="https://doc.rust-lang.org/1.54.0/std/primitive.bool.html">bool</a><br>) -&gt; <a class="struct" href="edits/struct.EditEffects.html" title="struct map_model::edits::EditEffects">EditEffects</a></h4><a href="#method.apply_edits" class="anchor"></a><a class="srclink" href="../src/map_model/edits/mod.rs.html#855-952" title="goto source code">[src]</a></div><details class="rustdoc-toggle method-toggle" open><summary><div id="method.recalculate_pathfinding_after_edits" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.recalculate_pathfinding_after_edits" class="fnname">recalculate_pathfinding_after_edits</a>(&amp;mut self, timer: &amp;mut <a class="struct" href="../abstutil/time/struct.Timer.html" title="struct abstutil::time::Timer">Timer</a>&lt;'_&gt;)</h4><a href="#method.recalculate_pathfinding_after_edits" class="anchor"></a><a class="srclink" href="../src/map_model/edits/mod.rs.html#956-980" title="goto source code">[src]</a></div></summary><div class="docblock"><p>This can expensive, so dont constantly do it while editing in the UI. But this must happen
before the simulation resumes.</p>
</div></details><details class="rustdoc-toggle method-toggle" open><summary><div id="method.incremental_edit_traffic_signal" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.incremental_edit_traffic_signal" class="fnname">incremental_edit_traffic_signal</a>(&amp;mut self, signal: <a class="struct" href="objects/traffic_signals/struct.ControlTrafficSignal.html" title="struct map_model::objects::traffic_signals::ControlTrafficSignal">ControlTrafficSignal</a>)</h4><a href="#method.incremental_edit_traffic_signal" class="anchor"></a><a class="srclink" href="../src/map_model/edits/mod.rs.html#984-990" title="goto source code">[src]</a></div></summary><div class="docblock"><p>Since the player is in the middle of editing, the signal may not be valid. Dont go through
the entire apply_edits flow.</p>
</div></details><details class="rustdoc-toggle method-toggle" open><summary><div id="method.get_edits_change_key" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.get_edits_change_key" class="fnname">get_edits_change_key</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.54.0/std/primitive.usize.html">usize</a></h4><a href="#method.get_edits_change_key" class="anchor"></a><a class="srclink" href="../src/map_model/edits/mod.rs.html#993-995" title="goto source code">[src]</a></div></summary><div class="docblock"><p>If you need to regenerate anything when the map is edited, use this key to detect edits.</p>
</div></details></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><div id="impl-1" class="impl has-srclink"><h3 class="code-header in-band">impl <a class="struct" href="struct.Map.html" title="struct map_model::Map">Map</a></h3><a href="#impl-1" class="anchor"></a><a class="srclink" href="../src/map_model/make/mod.rs.html#57-335" title="goto source code">[src]</a></div></summary><div class="impl-items"><div id="method.create_from_raw" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.create_from_raw" class="fnname">create_from_raw</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;raw: <a class="struct" href="raw/struct.RawMap.html" title="struct map_model::raw::RawMap">RawMap</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;opts: <a class="struct" href="make/struct.RawToMapOptions.html" title="struct map_model::make::RawToMapOptions">RawToMapOptions</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;timer: &amp;mut <a class="struct" href="../abstutil/time/struct.Timer.html" title="struct abstutil::time::Timer">Timer</a>&lt;'_&gt;<br>) -&gt; <a class="struct" href="struct.Map.html" title="struct map_model::Map">Map</a></h4><a href="#method.create_from_raw" class="anchor"></a><a class="srclink" href="../src/map_model/make/mod.rs.html#58-334" title="goto source code">[src]</a></div></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><div id="impl-2" class="impl has-srclink"><h3 class="code-header in-band">impl <a class="struct" href="struct.Map.html" title="struct map_model::Map">Map</a></h3><a href="#impl-2" class="anchor"></a><a class="srclink" href="../src/map_model/make/mod.rs.html#337-374" title="goto source code">[src]</a></div></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><div id="method.import_minimal" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.import_minimal" class="fnname">import_minimal</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;name: <a class="struct" href="../abstio/abst_paths/struct.MapName.html" title="struct abstio::abst_paths::MapName">MapName</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;bounds: <a class="struct" href="../geom/bounds/struct.Bounds.html" title="struct geom::bounds::Bounds">Bounds</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;gps_bounds: <a class="struct" href="../geom/bounds/struct.GPSBounds.html" title="struct geom::bounds::GPSBounds">GPSBounds</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;intersections: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/intersection/struct.Intersection.html" title="struct map_model::objects::intersection::Intersection">Intersection</a>&gt;, <br>&nbsp;&nbsp;&nbsp;&nbsp;roads: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/road/struct.Road.html" title="struct map_model::objects::road::Road">Road</a>&gt;, <br>&nbsp;&nbsp;&nbsp;&nbsp;lanes: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/lane/struct.Lane.html" title="struct map_model::objects::lane::Lane">Lane</a>&gt;<br>) -&gt; <a class="struct" href="struct.Map.html" title="struct map_model::Map">Map</a></h4><a href="#method.import_minimal" class="anchor"></a><a class="srclink" href="../src/map_model/make/mod.rs.html#339-373" title="goto source code">[src]</a></div></summary><div class="docblock"><p>Use for creating a map directly from some external format, not from a RawMap.</p>
</div></details></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><div id="impl-3" class="impl has-srclink"><h3 class="code-header in-band">impl <a class="struct" href="struct.Map.html" title="struct map_model::Map">Map</a></h3><a href="#impl-3" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#45-821" title="goto source code">[src]</a></div></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><div id="method.load_synchronously" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.load_synchronously" class="fnname">load_synchronously</a>(path: <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>, timer: &amp;mut <a class="struct" href="../abstutil/time/struct.Timer.html" title="struct abstutil::time::Timer">Timer</a>&lt;'_&gt;) -&gt; <a class="struct" href="struct.Map.html" title="struct map_model::Map">Map</a></h4><a href="#method.load_synchronously" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#48-83" title="goto source code">[src]</a></div></summary><div class="docblock"><p>Load a map from a local serialized Map or RawMap. Note this wont work on web. This should
only be used by non-UI tools.</p>
</div></details><details class="rustdoc-toggle method-toggle" open><summary><div id="method.map_loaded_directly" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.map_loaded_directly" class="fnname">map_loaded_directly</a>(&amp;mut self)</h4><a href="#method.map_loaded_directly" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#86-151" title="goto source code">[src]</a></div></summary><div class="docblock"><p>After deserializing a map directly, call this after.</p>
</div></details><details class="rustdoc-toggle method-toggle" open><summary><div id="method.blank" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.blank" class="fnname">blank</a>() -&gt; <a class="struct" href="struct.Map.html" title="struct map_model::Map">Map</a></h4><a href="#method.blank" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#154-191" title="goto source code">[src]</a></div></summary><div class="docblock"><p>Just for temporary std::mem::replace tricks.</p>
</div></details><div id="method.all_roads" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.all_roads" class="fnname">all_roads</a>(&amp;self) -&gt; &amp;<a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/road/struct.Road.html" title="struct map_model::objects::road::Road">Road</a>&gt;</h4><a href="#method.all_roads" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#193-195" title="goto source code">[src]</a></div><div id="method.all_lanes" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.all_lanes" class="fnname">all_lanes</a>(&amp;self) -&gt; &amp;<a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/collections/btree/map/struct.BTreeMap.html" title="struct alloc::collections::btree::map::BTreeMap">BTreeMap</a>&lt;<a class="struct" href="objects/lane/struct.LaneID.html" title="struct map_model::objects::lane::LaneID">LaneID</a>, <a class="struct" href="objects/lane/struct.Lane.html" title="struct map_model::objects::lane::Lane">Lane</a>&gt;</h4><a href="#method.all_lanes" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#197-199" title="goto source code">[src]</a></div><div id="method.all_intersections" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.all_intersections" class="fnname">all_intersections</a>(&amp;self) -&gt; &amp;<a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/intersection/struct.Intersection.html" title="struct map_model::objects::intersection::Intersection">Intersection</a>&gt;</h4><a href="#method.all_intersections" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#201-203" title="goto source code">[src]</a></div><div id="method.all_turns" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.all_turns" class="fnname">all_turns</a>(&amp;self) -&gt; impl <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/iter/traits/iterator/trait.Iterator.html" title="trait core::iter::traits::iterator::Iterator">Iterator</a>&lt;Item = &amp;<a class="struct" href="objects/turn/struct.Turn.html" title="struct map_model::objects::turn::Turn">Turn</a>&gt;</h4><a href="#method.all_turns" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#205-207" title="goto source code">[src]</a></div><div id="method.all_buildings" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.all_buildings" class="fnname">all_buildings</a>(&amp;self) -&gt; &amp;<a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/building/struct.Building.html" title="struct map_model::objects::building::Building">Building</a>&gt;</h4><a href="#method.all_buildings" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#209-211" title="goto source code">[src]</a></div><div id="method.all_areas" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.all_areas" class="fnname">all_areas</a>(&amp;self) -&gt; &amp;<a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/area/struct.Area.html" title="struct map_model::objects::area::Area">Area</a>&gt;</h4><a href="#method.all_areas" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#213-215" title="goto source code">[src]</a></div><div id="method.all_parking_lots" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.all_parking_lots" class="fnname">all_parking_lots</a>(&amp;self) -&gt; &amp;<a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="objects/parking_lot/struct.ParkingLot.html" title="struct ma
</div></details><div id="method.get_turns_to_lane" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.get_turns_to_lane" class="fnname">get_turns_to_lane</a>(&amp;self, l: <a class="struct" href="objects/lane/struct.LaneID.html" title="struct map_model::objects::lane::LaneID">LaneID</a>) -&gt; <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;&amp;<a class="struct" href="objects/turn/struct.Turn.html" title="struct map_model::objects::turn::Turn">Turn</a>&gt;</h4><a href="#method.get_turns_to_lane" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#343-360" title="goto source code">[src]</a></div><div id="method.get_turn_between" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.get_turn_between" class="fnname">get_turn_between</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;from: <a class="struct" href="objects/lane/struct.LaneID.html" title="struct map_model::objects::lane::LaneID">LaneID</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;to: <a class="struct" href="objects/lane/struct.LaneID.html" title="struct map_model::objects::lane::LaneID">LaneID</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;parent: <a class="struct" href="objects/intersection/struct.IntersectionID.html" title="struct map_model::objects::intersection::IntersectionID">IntersectionID</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.54.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;&amp;<a class="struct" href="objects/turn/struct.Turn.html" title="struct map_model::objects::turn::Turn">Turn</a>&gt;</h4><a href="#method.get_turn_between" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#362-372" title="goto source code">[src]</a></div><div id="method.get_next_turns_and_lanes" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.get_next_turns_and_lanes" class="fnname">get_next_turns_and_lanes</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;from: <a class="struct" href="objects/lane/struct.LaneID.html" title="struct map_model::objects::lane::LaneID">LaneID</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;parent: <a class="struct" href="objects/intersection/struct.IntersectionID.html" title="struct map_model::objects::intersection::IntersectionID">IntersectionID</a><br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/1.54.0/std/primitive.tuple.html">(</a>&amp;<a class="struct" href="objects/turn/struct.Turn.html" title="struct map_model::objects::turn::Turn">Turn</a>, &amp;<a class="struct" href="objects/lane/struct.Lane.html" title="struct map_model::objects::lane::Lane">Lane</a><a class="primitive" href="https://doc.rust-lang.org/1.54.0/std/primitive.tuple.html">)</a>&gt;</h4><a href="#method.get_next_turns_and_lanes" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#374-385" title="goto source code">[src]</a></div><div id="method.get_turns_for" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.get_turns_for" class="fnname">get_turns_for</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;from: <a class="struct" href="objects/lane/struct.LaneID.html" title="struct map_model::objects::lane::LaneID">LaneID</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;constraints: <a class="enum" href="pathfind/enum.PathConstraints.html" title="enum map_model::pathfind::PathConstraints">PathConstraints</a><br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;&amp;<a class="struct" href="objects/turn/struct.Turn.html" title="struct map_model::objects::turn::Turn">Turn</a>&gt;</h4><a href="#method.get_turns_for" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#387-404" title="goto source code">[src]</a></div><details class="rustdoc-toggle m
</div></details><div id="method.get_next_roads" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.get_next_roads" class="fnname">get_next_roads</a>(&amp;self, from: <a class="struct" href="objects/road/struct.RoadID.html" title="struct map_model::objects::road::RoadID">RoadID</a>) -&gt; <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/collections/btree/set/struct.BTreeSet.html" title="struct alloc::collections::btree::set::BTreeSet">BTreeSet</a>&lt;<a class="struct" href="objects/road/struct.RoadID.html" title="struct map_model::objects::road::RoadID">RoadID</a>&gt;</h4><a href="#method.get_next_roads" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#427-434" title="goto source code">[src]</a></div><div id="method.get_parent" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.get_parent" class="fnname">get_parent</a>(&amp;self, id: <a class="struct" href="objects/lane/struct.LaneID.html" title="struct map_model::objects::lane::LaneID">LaneID</a>) -&gt; &amp;<a class="struct" href="objects/road/struct.Road.html" title="struct map_model::objects::road::Road">Road</a></h4><a href="#method.get_parent" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#436-439" title="goto source code">[src]</a></div><div id="method.get_gps_bounds" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.get_gps_bounds" class="fnname">get_gps_bounds</a>(&amp;self) -&gt; &amp;<a class="struct" href="../geom/bounds/struct.GPSBounds.html" title="struct geom::bounds::GPSBounds">GPSBounds</a></h4><a href="#method.get_gps_bounds" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#441-443" title="goto source code">[src]</a></div><div id="method.get_bounds" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.get_bounds" class="fnname">get_bounds</a>(&amp;self) -&gt; &amp;<a class="struct" href="../geom/bounds/struct.Bounds.html" title="struct geom::bounds::Bounds">Bounds</a></h4><a href="#method.get_bounds" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#445-447" title="goto source code">[src]</a></div><div id="method.get_city_name" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.get_city_name" class="fnname">get_city_name</a>(&amp;self) -&gt; &amp;<a class="struct" href="../abstio/abst_paths/struct.CityName.html" title="struct abstio::abst_paths::CityName">CityName</a></h4><a href="#method.get_city_name" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#449-451" title="goto source code">[src]</a></div><div id="method.get_name" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.get_name" class="fnname">get_name</a>(&amp;self) -&gt; &amp;<a class="struct" href="../abstio/abst_paths/struct.MapName.html" title="struct abstio::abst_paths::MapName">MapName</a></h4><a href="#method.get_name" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#453-455" title="goto source code">[src]</a></div><div id="method.all_bus_stops" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.all_bus_stops" class="fnname">all_bus_stops</a>(&amp;self) -&gt; &amp;<a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/collections/btree/map/struct.BTreeMap.html" title="struct alloc::collections::btree::map::BTreeMap">BTreeMap</a>&lt;<a class="struct" href="objects/bus_stop/struct.BusStopID.html" title="struct map_model::objects::bus_stop::BusStopID">BusStopID</a>, <a class="struct" href="objects/bus_stop/struct.BusStop.html" title="struct map_model::objects::bus_stop::BusStop">BusStop</a>&gt;</h4><a href="#method.all_bus_stops" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#457-459" title="goto source code">[src]</a></div><div id="method.get_bs" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.get_bs" class="fnname">get_bs</a>(&amp;self, stop: <a class="struct" href="objects/bus_stop/struct.BusStopID.html" title
</div></details><div id="method.all_outgoing_borders" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.all_outgoing_borders" class="fnname">all_outgoing_borders</a>(&amp;self) -&gt; <a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;&amp;<a class="struct" href="objects/intersection/struct.Intersection.html" title="struct map_model::objects::intersection::Intersection">Intersection</a>&gt;</h4><a href="#method.all_outgoing_borders" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#502-510" title="goto source code">[src]</a></div><div id="method.save" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.save" class="fnname">save</a>(&amp;self)</h4><a href="#method.save" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#512-517" title="goto source code">[src]</a></div><details class="rustdoc-toggle method-toggle" open><summary><div id="method.find_driving_lane_near_building" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.find_driving_lane_near_building" class="fnname">find_driving_lane_near_building</a>(&amp;self, b: <a class="struct" href="objects/building/struct.BuildingID.html" title="struct map_model::objects::building::BuildingID">BuildingID</a>) -&gt; <a class="struct" href="objects/lane/struct.LaneID.html" title="struct map_model::objects::lane::LaneID">LaneID</a></h4><a href="#method.find_driving_lane_near_building" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#524-572" title="goto source code">[src]</a></div></summary><div class="docblock"><p>Cars trying to park near this building should head for the driving lane returned here, then
start their search. Some parking lanes are connected to driving lanes thatre “parking
blackholes” if there are no free spots on that lane, then the roads force cars to a
border.</p>
</div></details><div id="method.get_boundary_polygon" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.get_boundary_polygon" class="fnname">get_boundary_polygon</a>(&amp;self) -&gt; &amp;<a class="struct" href="../geom/polygon/struct.Polygon.html" title="struct geom::polygon::Polygon">Polygon</a></h4><a href="#method.get_boundary_polygon" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#574-576" title="goto source code">[src]</a></div><div id="method.pathfind" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.pathfind" class="fnname">pathfind</a>(&amp;self, req: <a class="struct" href="pathfind/v1/struct.PathRequest.html" title="struct map_model::pathfind::v1::PathRequest">PathRequest</a>) -&gt; <a class="type" href="https://docs.rs/anyhow/1.0.41/anyhow/type.Result.html" title="type anyhow::Result">Result</a>&lt;<a class="struct" href="pathfind/v1/struct.Path.html" title="struct map_model::pathfind::v1::Path">Path</a>&gt;</h4><a href="#method.pathfind" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#578-580" title="goto source code">[src]</a></div><div id="method.pathfind_with_params" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.pathfind_with_params" class="fnname">pathfind_with_params</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;req: <a class="struct" href="pathfind/v1/struct.PathRequest.html" title="struct map_model::pathfind::v1::PathRequest">PathRequest</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;params: &amp;<a class="struct" href="pathfind/struct.RoutingParams.html" title="struct map_model::pathfind::RoutingParams">RoutingParams</a><br>) -&gt; <a class="type" href="https://docs.rs/anyhow/1.0.41/anyhow/type.Result.html" title="type anyhow::Result">Result</a>&lt;<a class="struct" href="pathfind/v1/struct.Path.html" title="struct map_model::pathfind::v1::Path">Path</a>&gt;</h4><a href="#method.pathfind_with_params" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#581-583" title="goto source code">[src]</a></div><div id="method.pathfind_v2" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.pathfind_v2" class="fnname">pathfind_v2</a>(&amp;self, req: <a class="struct" href="pathfind/v1/struct.PathRequest.html" title="struct map_model::pathfind::v1::PathRequest">PathRequest</a>) -&gt; <a class="type" href="https://docs.rs/anyhow/1.0.41/anyhow/type.Result.html" title="type anyhow::Result">Result</a>&lt;<a class="struct" href="pathfind/v2/struct.PathV2.html" title="struct map_model::pathfind::v2::PathV2">PathV2</a>&gt;</h4><a href="#method.pathfind_v2" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#584-589" title="goto source code">[src]</a></div><div id="method.pathfind_v2_with_params" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.pathfind_v2_with_params" class="fnname">pathfind_v2_with_params</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;req: <a class="struct" href="pathfind/v1/struct.PathRequest.html" title="struct map_model::pathfind::v1::PathRequest">PathRequest</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;params: &amp;<a class="struct" href="pathfind/struct.RoutingParams.html" title="struct map_model::pathfind::RoutingParams">RoutingParams</a><br>) -&gt; <a class="type" href="https://docs.rs/anyhow/1.0.41/anyhow/type.Result.html" title="type anyhow::Result">Result</a>&lt;<a class="struct" href="pathfind/v2/struct.PathV2.html" title="struct map_model::pathfind::v2::PathV2">PathV2</a>&gt;</h4><a href="#method.pathfind_v2_with_params" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#590-599" title="goto source code">[src]</a></div><div id="method.should_use_transit" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.should_use_transit" class="fnname">should_use_transit</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;start: <a class="struct" href="traversable/struct.Position.html" title="struct
of getting there from the same start. This can be used to understand why an alternative
route wasnt chosen.</p>
</div></details><div id="method.get_movement" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.get_movement" class="fnname">get_movement</a>(&amp;self, t: <a class="struct" href="objects/turn/struct.TurnID.html" title="struct map_model::objects::turn::TurnID">TurnID</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.54.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="objects/turn/struct.MovementID.html" title="struct map_model::objects::turn::MovementID">MovementID</a>&gt;</h4><a href="#method.get_movement" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#621-634" title="goto source code">[src]</a></div><div id="method.find_r_by_osm_id" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.find_r_by_osm_id" class="fnname">find_r_by_osm_id</a>(&amp;self, id: <a class="struct" href="raw/struct.OriginalRoad.html" title="struct map_model::raw::OriginalRoad">OriginalRoad</a>) -&gt; <a class="type" href="https://docs.rs/anyhow/1.0.41/anyhow/type.Result.html" title="type anyhow::Result">Result</a>&lt;<a class="struct" href="objects/road/struct.RoadID.html" title="struct map_model::objects::road::RoadID">RoadID</a>&gt;</h4><a href="#method.find_r_by_osm_id" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#636-643" title="goto source code">[src]</a></div><div id="method.find_i_by_osm_id" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.find_i_by_osm_id" class="fnname">find_i_by_osm_id</a>(&amp;self, id: <a class="struct" href="osm/struct.NodeID.html" title="struct map_model::osm::NodeID">NodeID</a>) -&gt; <a class="type" href="https://docs.rs/anyhow/1.0.41/anyhow/type.Result.html" title="type anyhow::Result">Result</a>&lt;<a class="struct" href="objects/intersection/struct.IntersectionID.html" title="struct map_model::objects::intersection::IntersectionID">IntersectionID</a>&gt;</h4><a href="#method.find_i_by_osm_id" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#645-652" title="goto source code">[src]</a></div><div id="method.find_b_by_osm_id" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.find_b_by_osm_id" class="fnname">find_b_by_osm_id</a>(&amp;self, id: <a class="enum" href="osm/enum.OsmID.html" title="enum map_model::osm::OsmID">OsmID</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.54.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="objects/building/struct.BuildingID.html" title="struct map_model::objects::building::BuildingID">BuildingID</a>&gt;</h4><a href="#method.find_b_by_osm_id" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#654-661" title="goto source code">[src]</a></div><div id="method.find_br" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.find_br" class="fnname">find_br</a>(&amp;self, id: <a class="struct" href="osm/struct.RelationID.html" title="struct map_model::osm::RelationID">RelationID</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.54.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="objects/bus_stop/struct.BusRouteID.html" title="struct map_model::objects::bus_stop::BusRouteID">BusRouteID</a>&gt;</h4><a href="#method.find_br" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#663-670" title="goto source code">[src]</a></div><div id="method.hack_override_offstreet_spots" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.hack_override_offstreet_spots" class="fnname">hack_override_offstreet_spots</a>(&amp;mut self, spots_per_bldg: <a class="primitive" href="https://doc.rust-lang.org/1.54.0/std/primitive.usize.html">usize</a>)</h4><a href="#method.hack_override_offstreet_spots" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#673-679" title="goto source code">[src]</a></div><div id="method.hack_override_offstreet_spot
sequence of intersections.</p>
</div></details><details class="rustdoc-toggle method-toggle" open><summary><div id="method.routing_params" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.routing_params" class="fnname">routing_params</a>(&amp;self) -&gt; &amp;<a class="struct" href="pathfind/struct.RoutingParams.html" title="struct map_model::pathfind::RoutingParams">RoutingParams</a></h4><a href="#method.routing_params" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#769-771" title="goto source code">[src]</a></div></summary><div class="docblock"><p>Returns the routing params baked into the map.</p>
</div></details><div id="method.road_to_buildings" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.road_to_buildings" class="fnname">road_to_buildings</a>(&amp;self, r: <a class="struct" href="objects/road/struct.RoadID.html" title="struct map_model::objects::road::RoadID">RoadID</a>) -&gt; &amp;<a class="struct" href="https://doc.rust-lang.org/1.54.0/alloc/collections/btree/set/struct.BTreeSet.html" title="struct alloc::collections::btree::set::BTreeSet">BTreeSet</a>&lt;<a class="struct" href="objects/building/struct.BuildingID.html" title="struct map_model::objects::building::BuildingID">BuildingID</a>&gt;</h4><a href="#method.road_to_buildings" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#773-775" title="goto source code">[src]</a></div><div id="method.recalculate_road_to_buildings" class="method has-srclink"><h4 class="code-header">pub(crate) fn <a href="#method.recalculate_road_to_buildings" class="fnname">recalculate_road_to_buildings</a>(&amp;mut self)</h4><a href="#method.recalculate_road_to_buildings" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#777-783" title="goto source code">[src]</a></div><details class="rustdoc-toggle method-toggle" open><summary><div id="method.find_road_between" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.find_road_between" class="fnname">find_road_between</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;i1: <a class="struct" href="objects/intersection/struct.IntersectionID.html" title="struct map_model::objects::intersection::IntersectionID">IntersectionID</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;i2: <a class="struct" href="objects/intersection/struct.IntersectionID.html" title="struct map_model::objects::intersection::IntersectionID">IntersectionID</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.54.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="objects/road/struct.RoadID.html" title="struct map_model::objects::road::RoadID">RoadID</a>&gt;</h4><a href="#method.find_road_between" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#786-794" title="goto source code">[src]</a></div></summary><div class="docblock"><p>Finds the road directly connecting two intersections.</p>
</div></details><details class="rustdoc-toggle method-toggle" open><summary><div id="method.max_elevation" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.max_elevation" class="fnname">max_elevation</a>(&amp;self) -&gt; <a class="struct" href="../geom/distance/struct.Distance.html" title="struct geom::distance::Distance">Distance</a></h4><a href="#method.max_elevation" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#797-804" title="goto source code">[src]</a></div></summary><div class="docblock"><p>Returns the highest elevation in the map</p>
</div></details><details class="rustdoc-toggle method-toggle" open><summary><div id="method.is_unprotected_turn" class="method has-srclink"><h4 class="code-header">pub fn <a href="#method.is_unprotected_turn" class="fnname">is_unprotected_turn</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;from: <a class="struct" href="objects/road/struct.RoadID.html" title="struct map_model::objects::road::RoadID">RoadID</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;to: <a class="struct" href="objects/road/struct.RoadID.html" title="struct map_model::objects::road::RoadID">RoadID</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;turn_type: <a class="enum" href="objects/turn/enum.TurnType.html" title="enum map_model::objects::turn::TurnType">TurnType</a><br>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.54.0/std/primitive.bool.html">bool</a></h4><a href="#method.is_unprotected_turn" class="anchor"></a><a class="srclink" href="../src/map_model/map.rs.html#809-820" title="goto source code">[src]</a></div></summary><div class="docblock"><p>Does a turn at a stop sign go from a smaller to a larger road?
(Note this doesnt look at unprotected movements in traffic signals, since we dont yet
have good heuristics for when those exist)</p>
</div></details></div></details><h2 id="trait-implementations" class="small-section-header">Trait Implementations<a href="#trait-implementations" class="anchor"></a></h2><div id="trait-implementations-list"><details class="rustdoc-toggle implementors-toggle"><summary><div id="impl-Clone" class="impl has-srclink"><h3 class="code-header in-band">impl <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> for <a class="struct" href="struct.Map.html" title="struct map_model::Map">Map</a></h3><a href="#impl-Clone" class="anchor"></a><a class="srclink" href="../src/map_model/lib.rs.html#83" title="goto source code">[src]</a></div></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><div id="method.clone" class="method trait-impl has-srclink"><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.54.0/core/clone/trait.Clone.html#tymethod.clone" class="fnname">clone</a>(&amp;self) -&gt; <a class="struct" href="struct.Map.html" title="struct map_model::Map">Map</a></h4><a href="#method.clone" class="anchor"></a><a class="srclink" href="../src/map_model/lib.rs.html#83" title="goto source code">[src]</a></div></summary><div class='docblock'><p>Returns a copy of the value. <a href="https://doc.rust-lang.org/1.54.0/core/clone/trait.Clone.html#tymethod.clone">Read more</a></p>
</div></details><details class="rustdoc-toggle method-toggle" open><summary><div id="method.clone_from" class="method trait-impl has-srclink"><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.54.0/core/clone/trait.Clone.html#method.clone_from" class="fnname">clone_from</a>(&amp;mut self, source: <a class="primitive" href="https://doc.rust-lang.org/1.54.0/std/primitive.reference.html">&amp;</a>Self)</h4><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span><a href="#method.clone_from" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/core/clone.rs.html#130" title="goto source code">[src]</a></div></summary><div class='docblock'><p>Performs copy-assignment from <code>source</code>. <a href="https://doc.rust-lang.org/1.54.0/core/clone/trait.Clone.html#method.clone_from">Read more</a></p>
</div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><div id="impl-Deserialize%3C%27de%3E" class="impl has-srclink"><h3 class="code-header in-band">impl&lt;'de&gt; <a class="trait" href="https://docs.rs/serde/1.0.126/serde/de/trait.Deserialize.html" title="trait serde::de::Deserialize">Deserialize</a>&lt;'de&gt; for <a class="struct" href="struct.Map.html" title="struct map_model::Map">Map</a></h3><a href="#impl-Deserialize%3C%27de%3E" class="anchor"></a><a class="srclink" href="../src/map_model/lib.rs.html#83" title="goto source code">[src]</a></div></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><div id="method.deserialize" class="method trait-impl has-srclink"><h4 class="code-header">fn <a href="https://docs.rs/serde/1.0.126/serde/de/trait.Deserialize.html#tymethod.deserialize" class="fnname">deserialize</a>&lt;__D&gt;(__deserializer: __D) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.54.0/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, __D::<a class="type" href="https://docs.rs/serde/1.0.126/serde/de/trait.Deserializer.html#associatedtype.Error" title="type serde::de::Deserializer::Error">Error</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;__D: <a class="trait" href="https://docs.rs/serde/1.0.126/serde/de/trait.Deserializer.html" title="trait serde::de::Deserializer">Deserializer</a>&lt;'de&gt;,&nbsp;</span></h4><a href="#method.deserialize" class="anchor"></a><a class="srclink" href="../src/map_model/lib.rs.html#83" title="goto source code">[src]</a></div></summary><div class='docblock'><p>Deserialize this value from the given Serde deserializer. <a href="https://docs.rs/serde/1.0.126/serde/de/trait.Deserialize.html#tymethod.deserialize">Read more</a></p>
</div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><div id="impl-Serialize" class="impl has-srclink"><h3 class="code-header in-band">impl <a class="trait" href="https://docs.rs/serde/1.0.126/serde/ser/trait.Serialize.html" title="trait serde::ser::Serialize">Serialize</a> for <a class="struct" href="struct.Map.html" title="struct map_model::Map">Map</a></h3><a href="#impl-Serialize" class="anchor"></a><a class="srclink" href="../src/map_model/lib.rs.html#83" title="goto source code">[src]</a></div></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><div id="method.serialize" class="method trait-impl has-srclink"><h4 class="code-header">fn <a href="https://docs.rs/serde/1.0.126/serde/ser/trait.Serialize.html#tymethod.serialize" class="fnname">serialize</a>&lt;__S&gt;(&amp;self, __serializer: __S) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.54.0/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;__S::<a class="type" href="https://docs.rs/serde/1.0.126/serde/ser/trait.Serializer.html#associatedtype.Ok" title="type serde::ser::Serializer::Ok">Ok</a>, __S::<a class="type" href="https://docs.rs/serde/1.0.126/serde/ser/trait.Serializer.html#associatedtype.Error" title="type serde::ser::Serializer::Error">Error</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;__S: <a class="trait" href="https://docs.rs/serde/1.0.126/serde/ser/trait.Serializer.html" title="trait serde::ser::Serializer">Serializer</a>,&nbsp;</span></h4><a href="#method.serialize" class="anchor"></a><a class="srclink" href="../src/map_model/lib.rs.html#83" title="goto source code">[src]</a></div></summary><div class='docblock'><p>Serialize this value into the given Serde serializer. <a href="https://docs.rs/serde/1.0.126/serde/ser/trait.Serialize.html#tymethod.serialize">Read more</a></p>
</div></details></div></details></div><h2 id="synthetic-implementations" class="small-section-header">Auto Trait Implementations<a href="#synthetic-implementations" class="anchor"></a></h2><div id="synthetic-implementations-list"><div id="impl-RefUnwindSafe" class="impl has-srclink"><h3 class="code-header in-band">impl <a class="trait" href="https://doc.rust-lang.org/1.54.0/std/panic/trait.RefUnwindSafe.html" title="trait std::panic::RefUnwindSafe">RefUnwindSafe</a> for <a class="struct" href="struct.Map.html" title="struct map_model::Map">Map</a></h3><a href="#impl-RefUnwindSafe" class="anchor"></a></div><div id="impl-Send" class="impl has-srclink"><h3 class="code-header in-band">impl <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a> for <a class="struct" href="struct.Map.html" title="struct map_model::Map">Map</a></h3><a href="#impl-Send" class="anchor"></a></div><div id="impl-Sync" class="impl has-srclink"><h3 class="code-header in-band">impl <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a> for <a class="struct" href="struct.Map.html" title="struct map_model::Map">Map</a></h3><a href="#impl-Sync" class="anchor"></a></div><div id="impl-Unpin" class="impl has-srclink"><h3 class="code-header in-band">impl <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a> for <a class="struct" href="struct.Map.html" title="struct map_model::Map">Map</a></h3><a href="#impl-Unpin" class="anchor"></a></div><div id="impl-UnwindSafe" class="impl has-srclink"><h3 class="code-header in-band">impl <a class="trait" href="https://doc.rust-lang.org/1.54.0/std/panic/trait.UnwindSafe.html" title="trait std::panic::UnwindSafe">UnwindSafe</a> for <a class="struct" href="struct.Map.html" title="struct map_model::Map">Map</a></h3><a href="#impl-UnwindSafe" class="anchor"></a></div></div><h2 id="blanket-implementations" class="small-section-header">Blanket Implementations<a href="#blanket-implementations" class="anchor"></a></h2><div id="blanket-implementations-list"><details class="rustdoc-toggle implementors-toggle"><summary><div id="impl-Any" class="impl has-srclink"><h3 class="code-header in-band">impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/any/trait.Any.html" title="trait core::any::Any">Any</a> for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: 'static + ?<a class="trait" href="https://doc.rust-lang.org/1.54.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></h3><a href="#impl-Any" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/core/any.rs.html#131-135" title="goto source code">[src]</a></div></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><div id="method.type_id" class="method trait-impl has-srclink"><h4 class="code-header">pub fn <a href="https://doc.rust-lang.org/1.54.0/core/any/trait.Any.html#tymethod.type_id" class="fnname">type_id</a>(&amp;self) -&gt; <a class="struct" href="https://doc.rust-lang.org/1.54.0/core/any/struct.TypeId.html" title="struct core::any::TypeId">TypeId</a></h4><a href="#method.type_id" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/core/any.rs.html#132" title="goto source code">[src]</a></div></summary><div class='docblock'><p>Gets the <code>TypeId</code> of <code>self</code>. <a href="https://doc.rust-lang.org/1.54.0/core/any/trait.Any.html#tymethod.type_id">Read more</a></p>
</div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><div id="impl-Borrow%3CT%3E" class="impl has-srclink"><h3 class="code-header in-band">impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/borrow/trait.Borrow.html" title="trait core::borrow::Borrow">Borrow</a>&lt;T&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: ?<a class="trait" href="https://doc.rust-lang.org/1.54.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></h3><a href="#impl-Borrow%3CT%3E" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/core/borrow.rs.html#208-213" title="goto source code">[src]</a></div></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><div id="method.borrow" class="method trait-impl has-srclink"><h4 class="code-header">pub fn <a href="https://doc.rust-lang.org/1.54.0/core/borrow/trait.Borrow.html#tymethod.borrow" class="fnname">borrow</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.54.0/std/primitive.reference.html">&amp;</a>T</h4><a href="#method.borrow" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/core/borrow.rs.html#210" title="goto source code">[src]</a></div></summary><div class='docblock'><p>Immutably borrows from an owned value. <a href="https://doc.rust-lang.org/1.54.0/core/borrow/trait.Borrow.html#tymethod.borrow">Read more</a></p>
</div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><div id="impl-BorrowMut%3CT%3E" class="impl has-srclink"><h3 class="code-header in-band">impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/borrow/trait.BorrowMut.html" title="trait core::borrow::BorrowMut">BorrowMut</a>&lt;T&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: ?<a class="trait" href="https://doc.rust-lang.org/1.54.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></h3><a href="#impl-BorrowMut%3CT%3E" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/core/borrow.rs.html#216-220" title="goto source code">[src]</a></div></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><div id="method.borrow_mut" class="method trait-impl has-srclink"><h4 class="code-header">pub fn <a href="https://doc.rust-lang.org/1.54.0/core/borrow/trait.BorrowMut.html#tymethod.borrow_mut" class="fnname">borrow_mut</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.54.0/std/primitive.reference.html">&amp;mut </a>T</h4><a href="#method.borrow_mut" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/core/borrow.rs.html#217" title="goto source code">[src]</a></div></summary><div class='docblock'><p>Mutably borrows from an owned value. <a href="https://doc.rust-lang.org/1.54.0/core/borrow/trait.BorrowMut.html#tymethod.borrow_mut">Read more</a></p>
</div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><div id="impl-From%3CT%3E" class="impl has-srclink"><h3 class="code-header in-band">impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;T&gt; for T</h3><a href="#impl-From%3CT%3E" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/core/convert/mod.rs.html#544-548" title="goto source code">[src]</a></div></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><div id="method.from" class="method trait-impl has-srclink"><h4 class="code-header">pub fn <a href="https://doc.rust-lang.org/1.54.0/core/convert/trait.From.html#tymethod.from" class="fnname">from</a>(t: T) -&gt; T</h4><a href="#method.from" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/core/convert/mod.rs.html#545" title="goto source code">[src]</a></div></summary><div class='docblock'><p>Performs the conversion.</p>
</div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><div id="impl-Instrument" class="impl has-srclink"><h3 class="code-header in-band">impl&lt;T&gt; <a class="trait" href="https://docs.rs/tracing/0.1.26/tracing/instrument/trait.Instrument.html" title="trait tracing::instrument::Instrument">Instrument</a> for T</h3><a href="#impl-Instrument" class="anchor"></a><a class="srclink" href="https://docs.rs/tracing/0.1.26/src/tracing/instrument.rs.html#155" title="goto source code">[src]</a></div></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><div id="method.instrument" class="method trait-impl has-srclink"><h4 class="code-header">fn <a href="https://docs.rs/tracing/0.1.26/tracing/instrument/trait.Instrument.html#method.instrument" class="fnname">instrument</a>(self, span: <a class="struct" href="https://docs.rs/tracing/0.1.26/tracing/span/struct.Span.html" title="struct tracing::span::Span">Span</a>) -&gt; <a class="struct" href="https://docs.rs/tracing/0.1.26/tracing/instrument/struct.Instrumented.html" title="struct tracing::instrument::Instrumented">Instrumented</a>&lt;Self&gt;</h4><a href="#method.instrument" class="anchor"></a><a class="srclink" href="https://docs.rs/tracing/0.1.26/src/tracing/instrument.rs.html#38" title="goto source code">[src]</a></div></summary><div class='docblock'><p>Instruments this type with the provided <code>Span</code>, returning an
<code>Instrumented</code> wrapper. <a href="https://docs.rs/tracing/0.1.26/tracing/instrument/trait.Instrument.html#method.instrument">Read more</a></p>
</div></details><details class="rustdoc-toggle method-toggle" open><summary><div id="method.in_current_span" class="method trait-impl has-srclink"><h4 class="code-header">fn <a href="https://docs.rs/tracing/0.1.26/tracing/instrument/trait.Instrument.html#method.in_current_span" class="fnname">in_current_span</a>(self) -&gt; <a class="struct" href="https://docs.rs/tracing/0.1.26/tracing/instrument/struct.Instrumented.html" title="struct tracing::instrument::Instrumented">Instrumented</a>&lt;Self&gt;</h4><a href="#method.in_current_span" class="anchor"></a><a class="srclink" href="https://docs.rs/tracing/0.1.26/src/tracing/instrument.rs.html#74" title="goto source code">[src]</a></div></summary><div class='docblock'><p>Instruments this type with the <a href="../struct.Span.html#method.current">current</a> <code>Span</code>, returning an
<code>Instrumented</code> wrapper. <a href="https://docs.rs/tracing/0.1.26/tracing/instrument/trait.Instrument.html#method.in_current_span">Read more</a></p>
</div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><div id="impl-Into%3CU%3E" class="impl has-srclink"><h3 class="code-header in-band">impl&lt;T, U&gt; <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;U&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;U: <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;T&gt;,&nbsp;</span></h3><a href="#impl-Into%3CU%3E" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/core/convert/mod.rs.html#533-540" title="goto source code">[src]</a></div></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><div id="method.into" class="method trait-impl has-srclink"><h4 class="code-header">pub fn <a href="https://doc.rust-lang.org/1.54.0/core/convert/trait.Into.html#tymethod.into" class="fnname">into</a>(self) -&gt; U</h4><a href="#method.into" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/core/convert/mod.rs.html#537" title="goto source code">[src]</a></div></summary><div class='docblock'><p>Performs the conversion.</p>
</div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><div id="impl-Same%3CT%3E" class="impl has-srclink"><h3 class="code-header in-band">impl&lt;T&gt; Same&lt;T&gt; for T</h3><a href="#impl-Same%3CT%3E" class="anchor"></a></div></summary><div class="impl-items"><details class="rustdoc-toggle" open><summary><div id="associatedtype.Output" class="type trait-impl has-srclink"><h4 class="code-header">type <a href="#associatedtype.Output" class="type">Output</a> = T</h4><a href="#associatedtype.Output" class="anchor"></a></div></summary><div class='docblock'><p>Should always be <code>Self</code></p>
</div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><div id="impl-ToOwned" class="impl has-srclink"><h3 class="code-header in-band">impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/1.54.0/alloc/borrow/trait.ToOwned.html" title="trait alloc::borrow::ToOwned">ToOwned</a> for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,&nbsp;</span></h3><a href="#impl-ToOwned" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/alloc/borrow.rs.html#84-96" title="goto source code">[src]</a></div></summary><div class="impl-items"><details class="rustdoc-toggle" open><summary><div id="associatedtype.Owned" class="type trait-impl has-srclink"><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.54.0/alloc/borrow/trait.ToOwned.html#associatedtype.Owned" class="type">Owned</a> = T</h4><a href="#associatedtype.Owned" class="anchor"></a></div></summary><div class='docblock'><p>The resulting type after obtaining ownership.</p>
</div></details><details class="rustdoc-toggle method-toggle" open><summary><div id="method.to_owned" class="method trait-impl has-srclink"><h4 class="code-header">pub fn <a href="https://doc.rust-lang.org/1.54.0/alloc/borrow/trait.ToOwned.html#tymethod.to_owned" class="fnname">to_owned</a>(&amp;self) -&gt; T</h4><a href="#method.to_owned" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/alloc/borrow.rs.html#89" title="goto source code">[src]</a></div></summary><div class='docblock'><p>Creates owned data from borrowed data, usually by cloning. <a href="https://doc.rust-lang.org/1.54.0/alloc/borrow/trait.ToOwned.html#tymethod.to_owned">Read more</a></p>
</div></details><details class="rustdoc-toggle method-toggle" open><summary><div id="method.clone_into" class="method trait-impl has-srclink"><h4 class="code-header">pub fn <a href="https://doc.rust-lang.org/1.54.0/alloc/borrow/trait.ToOwned.html#method.clone_into" class="fnname">clone_into</a>(&amp;self, target: <a class="primitive" href="https://doc.rust-lang.org/1.54.0/std/primitive.reference.html">&amp;mut </a>T)</h4><a href="#method.clone_into" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/alloc/borrow.rs.html#93" title="goto source code">[src]</a></div></summary><div class="item-info"><div class="stab unstable"><details><summary><span class="emoji">🔬</span> This is a nightly-only experimental API. (<code>toowned_clone_into</code>)</summary><p>recently added</p>
</details></div></div><div class='docblock'><p>Uses borrowed data to replace owned data, usually by cloning. <a href="https://doc.rust-lang.org/1.54.0/alloc/borrow/trait.ToOwned.html#method.clone_into">Read more</a></p>
</div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><div id="impl-TryFrom%3CU%3E" class="impl has-srclink"><h3 class="code-header in-band">impl&lt;T, U&gt; <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;U&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;U: <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;T&gt;,&nbsp;</span></h3><a href="#impl-TryFrom%3CU%3E" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/core/convert/mod.rs.html#581-590" title="goto source code">[src]</a></div></summary><div class="impl-items"><details class="rustdoc-toggle" open><summary><div id="associatedtype.Error" class="type trait-impl has-srclink"><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.54.0/core/convert/trait.TryFrom.html#associatedtype.Error" class="type">Error</a> = <a class="enum" href="https://doc.rust-lang.org/1.54.0/core/convert/enum.Infallible.html" title="enum core::convert::Infallible">Infallible</a></h4><a href="#associatedtype.Error" class="anchor"></a></div></summary><div class='docblock'><p>The type returned in the event of a conversion error.</p>
</div></details><details class="rustdoc-toggle method-toggle" open><summary><div id="method.try_from" class="method trait-impl has-srclink"><h4 class="code-header">pub fn <a href="https://doc.rust-lang.org/1.54.0/core/convert/trait.TryFrom.html#tymethod.try_from" class="fnname">try_from</a>(value: U) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.54.0/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;T, &lt;T as <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;U&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/1.54.0/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</h4><a href="#method.try_from" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/core/convert/mod.rs.html#587" title="goto source code">[src]</a></div></summary><div class='docblock'><p>Performs the conversion.</p>
</div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><div id="impl-TryInto%3CU%3E" class="impl has-srclink"><h3 class="code-header in-band">impl&lt;T, U&gt; <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/convert/trait.TryInto.html" title="trait core::convert::TryInto">TryInto</a>&lt;U&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;U: <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;T&gt;,&nbsp;</span></h3><a href="#impl-TryInto%3CU%3E" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/core/convert/mod.rs.html#567-576" title="goto source code">[src]</a></div></summary><div class="impl-items"><details class="rustdoc-toggle" open><summary><div id="associatedtype.Error-1" class="type trait-impl has-srclink"><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.54.0/core/convert/trait.TryInto.html#associatedtype.Error" class="type">Error</a> = &lt;U as <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/1.54.0/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a></h4><a href="#associatedtype.Error-1" class="anchor"></a></div></summary><div class='docblock'><p>The type returned in the event of a conversion error.</p>
</div></details><details class="rustdoc-toggle method-toggle" open><summary><div id="method.try_into" class="method trait-impl has-srclink"><h4 class="code-header">pub fn <a href="https://doc.rust-lang.org/1.54.0/core/convert/trait.TryInto.html#tymethod.try_into" class="fnname">try_into</a>(self) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.54.0/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;U, &lt;U as <a class="trait" href="https://doc.rust-lang.org/1.54.0/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/1.54.0/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</h4><a href="#method.try_into" class="anchor"></a><a class="srclink" href="https://doc.rust-lang.org/1.54.0/src/core/convert/mod.rs.html#573" title="goto source code">[src]</a></div></summary><div class='docblock'><p>Performs the conversion.</p>
</div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><div id="impl-VZip%3CV%3E" class="impl has-srclink"><h3 class="code-header in-band">impl&lt;V, T&gt; VZip&lt;V&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;V: MultiLane&lt;T&gt;,&nbsp;</span></h3><a href="#impl-VZip%3CV%3E" class="anchor"></a></div></summary><div class="impl-items"><div id="method.vzip" class="method trait-impl has-srclink"><h4 class="code-header">pub fn <a href="#tymethod.vzip" class="fnname">vzip</a>(self) -&gt; V</h4><a href="#method.vzip" class="anchor"></a></div></div></details><div id="impl-DeserializeOwned" class="impl has-srclink"><h3 class="code-header in-band">impl&lt;T&gt; <a class="trait" href="https://docs.rs/serde/1.0.126/serde/de/trait.DeserializeOwned.html" title="trait serde::de::DeserializeOwned">DeserializeOwned</a> for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: for&lt;'de&gt; <a class="trait" href="https://docs.rs/serde/1.0.126/serde/de/trait.Deserialize.html" title="trait serde::de::Deserialize">Deserialize</a>&lt;'de&gt;,&nbsp;</span></h3><a href="#impl-DeserializeOwned" class="anchor"></a><a class="srclink" href="https://docs.rs/serde/1.0.126/src/serde/de/mod.rs.html#603" title="goto source code">[src]</a></div></div></section><section id="search" class="content hidden"></section><div id="rustdoc-vars" data-root-path="../" data-current-crate="map_model" data-search-index-js="../search-index.js" data-search-js="../search.js"></div><script src="../main.js"></script></body></html>