pub struct Timetable {
pub type_field: String,
pub departure_stop_id: String,
pub routes: Vec<TimetableRoute>,
}
Fields§
§type_field: String
§departure_stop_id: String
§routes: Vec<TimetableRoute>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Timetable
impl<'de> Deserialize<'de> for Timetable
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
impl StructuralPartialEq for Timetable
Auto Trait Implementations§
impl Freeze for Timetable
impl RefUnwindSafe for Timetable
impl Send for Timetable
impl Sync for Timetable
impl Unpin for Timetable
impl UnwindSafe for Timetable
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