pub struct LineRouteSection {
pub type_field: String,
pub route_id: i64,
pub direction: String,
pub destination: String,
pub from_station: String,
pub to_station: String,
pub service_type: String,
pub vehicle_destination_text: String,
}
Fields§
§type_field: String
§route_id: i64
§direction: String
§destination: String
§from_station: String
§to_station: String
§service_type: String
§vehicle_destination_text: String
Trait Implementations§
Source§impl Clone for LineRouteSection
impl Clone for LineRouteSection
Source§fn clone(&self) -> LineRouteSection
fn clone(&self) -> LineRouteSection
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 LineRouteSection
impl Debug for LineRouteSection
Source§impl Default for LineRouteSection
impl Default for LineRouteSection
Source§fn default() -> LineRouteSection
fn default() -> LineRouteSection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LineRouteSection
impl<'de> Deserialize<'de> for LineRouteSection
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 LineRouteSection
impl PartialEq for LineRouteSection
Source§impl Serialize for LineRouteSection
impl Serialize for LineRouteSection
impl StructuralPartialEq for LineRouteSection
Auto Trait Implementations§
impl Freeze for LineRouteSection
impl RefUnwindSafe for LineRouteSection
impl Send for LineRouteSection
impl Sync for LineRouteSection
impl Unpin for LineRouteSection
impl UnwindSafe for LineRouteSection
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