pub struct VerbindungSection {Show 29 fields
pub abfahrt_cancellation: bool,
pub abfahrt_datum: String,
pub abfahrt_gleis: Option<String>,
pub abfahrt_koordinaten: Koordinaten,
pub abfahrt_name: String,
pub abfahrt_platform_change: bool,
pub abfahrt_time: String,
pub action_url: Option<String>,
pub ankunft_cancellation: bool,
pub ankunft_datum: String,
pub ankunft_gleis: Option<String>,
pub ankunft_koordinaten: Koordinaten,
pub ankunft_name: String,
pub ankunft_platform_change: bool,
pub ankunft_time: String,
pub arrival_track_label: Option<String>,
pub arrival_track_label_accessibility: Option<String>,
pub belegung_erste: String,
pub belegung_zweite: String,
pub departure_track_label: Option<String>,
pub departure_track_label_accessibility: Option<String>,
pub duration_prozent: Option<String>,
pub formation_url: Option<String>,
pub preview_type: String,
pub realtime_info: SectionRealtimeInfo,
pub transport_bezeichnung: Option<TransportBezeichnung>,
pub transport_hinweis: Option<String>,
pub transport_service_attributes: Vec<String>,
pub verbindung_type: String,
}Fields§
§abfahrt_cancellation: bool§abfahrt_datum: String§abfahrt_gleis: Option<String>§abfahrt_koordinaten: Koordinaten§abfahrt_name: String§abfahrt_platform_change: bool§abfahrt_time: String§action_url: Option<String>§ankunft_cancellation: bool§ankunft_datum: String§ankunft_gleis: Option<String>§ankunft_koordinaten: Koordinaten§ankunft_name: String§ankunft_platform_change: bool§ankunft_time: String§arrival_track_label: Option<String>§arrival_track_label_accessibility: Option<String>§belegung_erste: String§belegung_zweite: String§departure_track_label: Option<String>§departure_track_label_accessibility: Option<String>§duration_prozent: Option<String>§formation_url: Option<String>§preview_type: String§realtime_info: SectionRealtimeInfo§transport_bezeichnung: Option<TransportBezeichnung>§transport_hinweis: Option<String>§transport_service_attributes: Vec<String>§verbindung_type: StringTrait Implementations§
Source§impl Debug for VerbindungSection
impl Debug for VerbindungSection
Source§impl<'de> Deserialize<'de> for VerbindungSection
impl<'de> Deserialize<'de> for VerbindungSection
Source§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
Source§impl Display for VerbindungSection
impl Display for VerbindungSection
Auto Trait Implementations§
impl Freeze for VerbindungSection
impl RefUnwindSafe for VerbindungSection
impl Send for VerbindungSection
impl Sync for VerbindungSection
impl Unpin for VerbindungSection
impl UnwindSafe for VerbindungSection
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more