pub struct ItineraryQuery {
pub departure_time: NaiveDateTime,
pub elements: Vec<ItineraryQueryElement>,
}Fields§
§departure_time: NaiveDateTime§elements: Vec<ItineraryQueryElement>Trait Implementations§
Source§impl Clone for ItineraryQuery
impl Clone for ItineraryQuery
Source§fn clone(&self) -> ItineraryQuery
fn clone(&self) -> ItineraryQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ItineraryQuery
impl Debug for ItineraryQuery
Source§impl PartialEq for ItineraryQuery
impl PartialEq for ItineraryQuery
Source§fn eq(&self, other: &ItineraryQuery) -> bool
fn eq(&self, other: &ItineraryQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ItineraryQuery
Auto Trait Implementations§
impl Freeze for ItineraryQuery
impl RefUnwindSafe for ItineraryQuery
impl Send for ItineraryQuery
impl Sync for ItineraryQuery
impl Unpin for ItineraryQuery
impl UnsafeUnpin for ItineraryQuery
impl UnwindSafe for ItineraryQuery
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