Struct lta_models::traffic::est_travel_time::EstTravelTime
source · pub struct EstTravelTime {
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 EstTravelTime
impl Clone for EstTravelTime
source§fn clone(&self) -> EstTravelTime
fn clone(&self) -> EstTravelTime
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 EstTravelTime
impl Debug for EstTravelTime
source§impl<'de> Deserialize<'de> for EstTravelTime
impl<'de> Deserialize<'de> for EstTravelTime
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 EstTravelTime
impl PartialEq for EstTravelTime
source§fn eq(&self, other: &EstTravelTime) -> bool
fn eq(&self, other: &EstTravelTime) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for EstTravelTime
impl Serialize for EstTravelTime
impl StructuralPartialEq for EstTravelTime
Auto Trait Implementations§
impl RefUnwindSafe for EstTravelTime
impl Send for EstTravelTime
impl Sync for EstTravelTime
impl Unpin for EstTravelTime
impl UnwindSafe for EstTravelTime
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