pub struct TimetableRoute {
pub type_field: String,
pub station_intervals: Vec<StationInterval>,
pub schedules: Vec<Schedule>,
}
Fields§
§type_field: String
§station_intervals: Vec<StationInterval>
§schedules: Vec<Schedule>
Trait Implementations§
Source§impl Clone for TimetableRoute
impl Clone for TimetableRoute
Source§fn clone(&self) -> TimetableRoute
fn clone(&self) -> TimetableRoute
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TimetableRoute
impl Debug for TimetableRoute
Source§impl Default for TimetableRoute
impl Default for TimetableRoute
Source§fn default() -> TimetableRoute
fn default() -> TimetableRoute
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimetableRoute
impl<'de> Deserialize<'de> for TimetableRoute
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 PartialEq for TimetableRoute
impl PartialEq for TimetableRoute
Source§impl Serialize for TimetableRoute
impl Serialize for TimetableRoute
impl StructuralPartialEq for TimetableRoute
Auto Trait Implementations§
impl Freeze for TimetableRoute
impl RefUnwindSafe for TimetableRoute
impl Send for TimetableRoute
impl Sync for TimetableRoute
impl Unpin for TimetableRoute
impl UnwindSafe for TimetableRoute
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