[][src]Enum djangohashers::DjangoVersion

pub enum DjangoVersion {
    V1_4,
    V1_5,
    V1_6,
    V1_7,
    V1_8,
    V1_9,
    V1_10,
    V1_11,
    V2_0,
    V2_1,
    V2_2,
    V3_0,
    V3_1,
}

Django Version.

Variants

V1_4

Django 1.4.

V1_5

Django 1.5.

V1_6

Django 1.6.

V1_7

Django 1.7.

V1_8

Django 1.8.

V1_9

Django 1.9.

V1_10

Django 1.10.

V1_11

Django 1.11.

V2_0

Django 2.0.

V2_1

Django 2.1.

V2_2

Django 2.2.

V3_0

Django 3.0.

V3_1

Django 3.1.

Implementations

impl DjangoVersion[src]

pub const CURRENT: Self[src]

Current Django version.

Trait Implementations

impl Clone for DjangoVersion[src]

Auto Trait Implementations

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