Struct transit_model::objects::FareV1[][src]

pub struct FareV1 {
    pub before_change: String,
    pub after_change: String,
    pub start_trip: String,
    pub end_trip: String,
    pub global_condition: String,
    pub ticket_id: String,
}

Fields

before_change: Stringafter_change: Stringstart_trip: Stringend_trip: Stringglobal_condition: Stringticket_id: String

Trait Implementations

impl AddPrefix for FareV1[src]

impl Debug for FareV1[src]

impl Default for FareV1[src]

impl<'de> Deserialize<'de> for FareV1[src]

impl Eq for FareV1[src]

impl Ord for FareV1[src]

impl PartialEq<FareV1> for FareV1[src]

impl PartialOrd<FareV1> for FareV1[src]

impl Serialize for FareV1[src]

impl StructuralEq for FareV1[src]

impl StructuralPartialEq for FareV1[src]

Auto Trait Implementations

impl RefUnwindSafe for FareV1

impl Send for FareV1

impl Sync for FareV1

impl Unpin for FareV1

impl UnwindSafe for FareV1

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,