Struct lta_models::traffic::est_travel_time::EstTravelTimeRaw
source · pub struct EstTravelTimeRaw {
pub name: Highway,
pub direction: HighwayDirection,
pub far_end_pt: String,
pub start_pt: String,
pub end_pt: String,
pub est_travel_time: u32,
}
Fields§
§name: Highway
§direction: HighwayDirection
§far_end_pt: String
§start_pt: String
§end_pt: String
§est_travel_time: u32
Trait Implementations§
source§impl Clone for EstTravelTimeRaw
impl Clone for EstTravelTimeRaw
source§fn clone(&self) -> EstTravelTimeRaw
fn clone(&self) -> EstTravelTimeRaw
Returns a copy 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 EstTravelTimeRaw
impl Debug for EstTravelTimeRaw
source§impl<'de> Deserialize<'de> for EstTravelTimeRaw
impl<'de> Deserialize<'de> for EstTravelTimeRaw
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 From<EstTravelTimeRaw> for EstTravelTime
impl From<EstTravelTimeRaw> for EstTravelTime
source§fn from(r: EstTravelTimeRaw) -> Self
fn from(r: EstTravelTimeRaw) -> Self
Converts to this type from the input type.
source§impl PartialEq for EstTravelTimeRaw
impl PartialEq for EstTravelTimeRaw
source§fn eq(&self, other: &EstTravelTimeRaw) -> bool
fn eq(&self, other: &EstTravelTimeRaw) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for EstTravelTimeRaw
impl Serialize for EstTravelTimeRaw
impl StructuralPartialEq for EstTravelTimeRaw
Auto Trait Implementations§
impl RefUnwindSafe for EstTravelTimeRaw
impl Send for EstTravelTimeRaw
impl Sync for EstTravelTimeRaw
impl Unpin for EstTravelTimeRaw
impl UnwindSafe for EstTravelTimeRaw
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