Enum otter_api_tests::shapelib::OccultationKindGeneral[][src]

pub enum OccultationKindGeneral<D> {
    Visible,
    Scrambled,
    Displaced(D),
    Invisible,
}

Variants

Visible
Scrambled
Displaced(D)
Invisible

Implementations

impl<P, Z> OccultationKindGeneral<(P, Z)>[src]

Trait Implementations

impl<D> Clone for OccultationKindGeneral<D> where
    D: Clone
[src]

impl<D> Copy for OccultationKindGeneral<D> where
    D: Copy
[src]

impl<D> Debug for OccultationKindGeneral<D> where
    D: Debug
[src]

impl Default for OccultationKindGeneral<(OccDisplacement, ZCoord)>[src]

impl<'de, D> Deserialize<'de> for OccultationKindGeneral<D> where
    D: Deserialize<'de>, 
[src]

impl<D> Eq for OccultationKindGeneral<D> where
    D: Eq
[src]

impl From<OccultationKindAlwaysOk> for OccultationKindGeneral<(OccDisplacement, ZCoord)>[src]

impl<D> Hash for OccultationKindGeneral<D> where
    D: Hash
[src]

impl Ord for OccultationKindGeneral<(OccDisplacement, ZCoord)>[src]

impl<D> PartialEq<OccultationKindGeneral<D>> for OccultationKindGeneral<D> where
    D: PartialEq<D>, 
[src]

impl PartialOrd<OccultationKindGeneral<(OccDisplacement, ZCoord)>> for OccultationKindGeneral<(OccDisplacement, ZCoord)>[src]

impl<D> Serialize for OccultationKindGeneral<D> where
    D: Serialize
[src]

impl<D> StructuralEq for OccultationKindGeneral<D>[src]

impl<D> StructuralPartialEq for OccultationKindGeneral<D>[src]

Auto Trait Implementations

impl<D> RefUnwindSafe for OccultationKindGeneral<D> where
    D: RefUnwindSafe

impl<D> Send for OccultationKindGeneral<D> where
    D: Send

impl<D> Sync for OccultationKindGeneral<D> where
    D: Sync

impl<D> Unpin for OccultationKindGeneral<D> where
    D: Unpin

impl<D> UnwindSafe for OccultationKindGeneral<D> where
    D: UnwindSafe

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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<A> DynCastExt for A

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

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

impl<T> OrdExt<T> for T where
    T: Ord + Clone
[src]

impl<T> RuleType for T where
    T: Copy + Debug + Eq + Hash + Ord
[src]

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

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