Struct map_model::objects::stop_signs::ControlStopSign
source · [−]pub struct ControlStopSign {
pub id: IntersectionID,
pub roads: BTreeMap<RoadID, RoadWithStopSign>,
}
Fields
id: IntersectionID
roads: BTreeMap<RoadID, RoadWithStopSign>
Only roads incoming to the intersection are listed here.
Implementations
sourceimpl ControlStopSign
impl ControlStopSign
pub fn new(map: &Map, id: IntersectionID) -> ControlStopSign
sourcepub fn get_priority(&self, turn: TurnID, map: &Map) -> TurnPriority
pub fn get_priority(&self, turn: TurnID, map: &Map) -> TurnPriority
Get the priority of a turn according to the stop sign – either protected or yield, never banned.
pub fn flip_sign(&mut self, r: RoadID)
Trait Implementations
sourceimpl Clone for ControlStopSign
impl Clone for ControlStopSign
sourcefn clone(&self) -> ControlStopSign
fn clone(&self) -> ControlStopSign
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ControlStopSign
impl Debug for ControlStopSign
sourceimpl<'de> Deserialize<'de> for ControlStopSign
impl<'de> Deserialize<'de> for ControlStopSign
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<ControlStopSign> for ControlStopSign
impl PartialEq<ControlStopSign> for ControlStopSign
sourcefn eq(&self, other: &ControlStopSign) -> bool
fn eq(&self, other: &ControlStopSign) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ControlStopSign) -> bool
fn ne(&self, other: &ControlStopSign) -> bool
This method tests for !=
.
sourceimpl Serialize for ControlStopSign
impl Serialize for ControlStopSign
impl StructuralPartialEq for ControlStopSign
Auto Trait Implementations
impl RefUnwindSafe for ControlStopSign
impl Send for ControlStopSign
impl Sync for ControlStopSign
impl Unpin for ControlStopSign
impl UnwindSafe for ControlStopSign
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more