#[repr(u8)]pub enum GTFSRealtimeEffect {
NoService = 1,
ReducedService = 2,
SignificantDelays = 3,
Detour = 4,
AdditionalService = 5,
ModifiedService = 6,
OtherEffect = 7,
UnknownEffect = 8,
StopMoved = 9,
NoEffect = 10,
AccessibilityIssue = 11,
}Expand description
What is the effect of this problem on the affected entity. If effect_detail is included, then Effect must also be included.
Variants§
NoService = 1
No service
ReducedService = 2
Reduced service
SignificantDelays = 3
We don’t care about INsignificant delays: they are hard to detect, have little impact on the user, and would clutter the results as they are too frequent.
Detour = 4
Detour
AdditionalService = 5
Additional service
ModifiedService = 6
Modified service
OtherEffect = 7
Other effect
UnknownEffect = 8
Unknown effect
StopMoved = 9
Stop moved
NoEffect = 10
No effect
AccessibilityIssue = 11
Accessibility issue
Trait Implementations§
Source§impl BitCast for GTFSRealtimeEffect
impl BitCast for GTFSRealtimeEffect
Source§impl Clone for GTFSRealtimeEffect
impl Clone for GTFSRealtimeEffect
Source§fn clone(&self) -> GTFSRealtimeEffect
fn clone(&self) -> GTFSRealtimeEffect
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 GTFSRealtimeEffect
impl Debug for GTFSRealtimeEffect
Source§impl Default for GTFSRealtimeEffect
impl Default for GTFSRealtimeEffect
Source§fn default() -> GTFSRealtimeEffect
fn default() -> GTFSRealtimeEffect
Returns the “default value” for a type. Read more
Source§impl Hash for GTFSRealtimeEffect
impl Hash for GTFSRealtimeEffect
Source§impl Ord for GTFSRealtimeEffect
impl Ord for GTFSRealtimeEffect
Source§impl PartialEq for GTFSRealtimeEffect
impl PartialEq for GTFSRealtimeEffect
Source§impl PartialOrd for GTFSRealtimeEffect
impl PartialOrd for GTFSRealtimeEffect
impl Copy for GTFSRealtimeEffect
impl Eq for GTFSRealtimeEffect
impl StructuralPartialEq for GTFSRealtimeEffect
Auto Trait Implementations§
impl Freeze for GTFSRealtimeEffect
impl RefUnwindSafe for GTFSRealtimeEffect
impl Send for GTFSRealtimeEffect
impl Sync for GTFSRealtimeEffect
impl Unpin for GTFSRealtimeEffect
impl UnwindSafe for GTFSRealtimeEffect
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().