[][src]Enum map_model::OffstreetParking

pub enum OffstreetParking {
    PublicGarage(Stringusize),
    Private(usizebool),
}

Represent no parking as Private(0, false).

Variants

PublicGarage(Stringusize)

(Name, spots)

Private(usizebool)

(Spots, explicitly tagged as a garage)

Trait Implementations

impl Clone for OffstreetParking[src]

impl Debug for OffstreetParking[src]

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

impl PartialEq<OffstreetParking> for OffstreetParking[src]

impl Serialize for OffstreetParking[src]

impl StructuralPartialEq for OffstreetParking[src]

Auto Trait Implementations

impl RefUnwindSafe for OffstreetParking

impl Send for OffstreetParking

impl Sync for OffstreetParking

impl Unpin for OffstreetParking

impl UnwindSafe for OffstreetParking

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