pub struct LineStatusesDates {
pub type_field: String,
pub id: String,
pub name: String,
pub mode_name: String,
pub disruptions: Vec<Value>,
pub created: String,
pub modified: String,
pub line_statuses: Vec<LineStatusesBetweenDates>,
pub route_sections: Vec<Value>,
pub service_types: Vec<ServiceType>,
pub crowding: Crowding,
}
Fields§
§type_field: String
§id: String
§name: String
§mode_name: String
§disruptions: Vec<Value>
§created: String
§modified: String
§line_statuses: Vec<LineStatusesBetweenDates>
§route_sections: Vec<Value>
§service_types: Vec<ServiceType>
§crowding: Crowding
Trait Implementations§
Source§impl Clone for LineStatusesDates
impl Clone for LineStatusesDates
Source§fn clone(&self) -> LineStatusesDates
fn clone(&self) -> LineStatusesDates
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 LineStatusesDates
impl Debug for LineStatusesDates
Source§impl Default for LineStatusesDates
impl Default for LineStatusesDates
Source§fn default() -> LineStatusesDates
fn default() -> LineStatusesDates
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LineStatusesDates
impl<'de> Deserialize<'de> for LineStatusesDates
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 LineStatusesDates
impl PartialEq for LineStatusesDates
Source§impl Serialize for LineStatusesDates
impl Serialize for LineStatusesDates
impl StructuralPartialEq for LineStatusesDates
Auto Trait Implementations§
impl Freeze for LineStatusesDates
impl RefUnwindSafe for LineStatusesDates
impl Send for LineStatusesDates
impl Sync for LineStatusesDates
impl Unpin for LineStatusesDates
impl UnwindSafe for LineStatusesDates
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