Struct transit_model::objects::Network[][src]

pub struct Network {
    pub id: String,
    pub name: String,
    pub url: Option<String>,
    pub codes: KeysValues,
    pub timezone: Option<Tz>,
    pub lang: Option<String>,
    pub phone: Option<String>,
    pub address: Option<String>,
    pub sort_order: Option<u32>,
}

Fields

id: Stringname: Stringurl: Option<String>codes: KeysValuestimezone: Option<Tz>lang: Option<String>phone: Option<String>address: Option<String>sort_order: Option<u32>

Trait Implementations

impl AddPrefix for Network[src]

impl Clone for Network[src]

impl Codes for Network[src]

impl Debug for Network[src]

impl Default for Network[src]

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

impl GetCorresponding<Network> for IdxSet<Contributor>[src]

impl GetCorresponding<Network> for IdxSet<Network>[src]

impl GetCorresponding<Network> for IdxSet<Line>[src]

impl GetCorresponding<Network> for IdxSet<Transfer>[src]

impl GetCorresponding<Network> for IdxSet<StopArea>[src]

impl GetCorresponding<Network> for IdxSet<Route>[src]

impl GetCorresponding<Network> for IdxSet<Calendar>[src]

impl GetCorresponding<Network> for IdxSet<StopPoint>[src]

impl GetCorresponding<Network> for IdxSet<Dataset>[src]

impl GetCorresponding<Network> for IdxSet<Company>[src]

impl GetCorresponding<Network> for IdxSet<VehicleJourney>[src]

impl GetCorresponding<Network> for IdxSet<CommercialMode>[src]

impl GetCorresponding<Network> for IdxSet<PhysicalMode>[src]

impl GetObjectType for Network[src]

impl Id<Network> for Network[src]

impl Id<Network> for Line[src]

impl PartialEq<Network> for Network[src]

impl Serialize for Network[src]

impl StructuralPartialEq for Network[src]

impl WithId for Network[src]

Auto Trait Implementations

impl RefUnwindSafe for Network

impl Send for Network

impl Sync for Network

impl Unpin for Network

impl UnwindSafe for Network

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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