Struct transit_model::objects::PriceV1[][src]

pub struct PriceV1 {
    pub id: String,
    pub start_date: NaiveDate,
    pub end_date: NaiveDate,
    pub price: u32,
    pub name: String,
    pub ignored: String,
    pub comment: String,
    pub currency_type: Option<String>,
}

Fields

id: Stringstart_date: NaiveDateend_date: NaiveDateprice: u32name: Stringignored: Stringcomment: Stringcurrency_type: Option<String>

Trait Implementations

impl AddPrefix for PriceV1[src]

impl Debug for PriceV1[src]

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

impl Eq for PriceV1[src]

impl Ord for PriceV1[src]

impl PartialEq<PriceV1> for PriceV1[src]

impl PartialOrd<PriceV1> for PriceV1[src]

impl Serialize for PriceV1[src]

impl StructuralEq for PriceV1[src]

impl StructuralPartialEq for PriceV1[src]

Auto Trait Implementations

impl RefUnwindSafe for PriceV1

impl Send for PriceV1

impl Sync for PriceV1

impl Unpin for PriceV1

impl UnwindSafe for PriceV1

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>,