pub enum GTFSTimepoint {
Approximate = 0,
Exact = 1,
}Expand description
Indicates if arrival/departure times are exact or approximate.
- 0 = Approximate times
- 1 = Exact times
Variants§
Trait Implementations§
Source§impl Clone for GTFSTimepoint
impl Clone for GTFSTimepoint
Source§fn clone(&self) -> GTFSTimepoint
fn clone(&self) -> GTFSTimepoint
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GTFSTimepoint
impl Debug for GTFSTimepoint
Source§impl From<i8> for GTFSTimepoint
impl From<i8> for GTFSTimepoint
Source§impl Hash for GTFSTimepoint
impl Hash for GTFSTimepoint
Source§impl Ord for GTFSTimepoint
impl Ord for GTFSTimepoint
Source§impl PartialEq for GTFSTimepoint
impl PartialEq for GTFSTimepoint
Source§impl PartialOrd for GTFSTimepoint
impl PartialOrd for GTFSTimepoint
impl Copy for GTFSTimepoint
impl Eq for GTFSTimepoint
impl StructuralPartialEq for GTFSTimepoint
Auto Trait Implementations§
impl Freeze for GTFSTimepoint
impl RefUnwindSafe for GTFSTimepoint
impl Send for GTFSTimepoint
impl Sync for GTFSTimepoint
impl Unpin for GTFSTimepoint
impl UnwindSafe for GTFSTimepoint
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more