Struct map_model::TransitStop [−][src]
pub struct TransitStop {
pub id: TransitStopID,
pub name: String,
pub gtfs_id: String,
pub driving_pos: Position,
pub sidewalk_pos: Position,
pub is_train_stop: bool,
}
Fields
id: TransitStopID
name: String
gtfs_id: String
driving_pos: Position
These may be on different roads entirely, like for light rail platforms.
sidewalk_pos: Position
is_train_stop: bool
If false, only buses serve this stop
Trait Implementations
fn 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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for TransitStop
impl Send for TransitStop
impl Sync for TransitStop
impl Unpin for TransitStop
impl UnwindSafe for TransitStop
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
type Output = T
type Output = T
Should always be Self