pub struct NextToArrive {
pub orig_train: String,
pub orig_line: RegionalRailsLine,
pub orig_departure_time: NaiveTime,
pub orig_arrival_time: NaiveTime,
pub orig_delay: String,
pub is_direct: bool,
}Fields§
§orig_train: String§orig_line: RegionalRailsLine§orig_departure_time: NaiveTime§orig_arrival_time: NaiveTime§orig_delay: String§is_direct: boolTrait Implementations§
Source§impl Clone for NextToArrive
impl Clone for NextToArrive
Source§fn clone(&self) -> NextToArrive
fn clone(&self) -> NextToArrive
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 NextToArrive
impl Debug for NextToArrive
Source§impl<'de> Deserialize<'de> for NextToArrive
impl<'de> Deserialize<'de> for NextToArrive
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
Auto Trait Implementations§
impl Freeze for NextToArrive
impl RefUnwindSafe for NextToArrive
impl Send for NextToArrive
impl Sync for NextToArrive
impl Unpin for NextToArrive
impl UnwindSafe for NextToArrive
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