pub enum DjangoVersion {
Show 19 variants 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, V3_2, V4_0, V4_1, V4_2, V5_0, V5_1,
}
Expand description

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.

§

V3_2

Django 3.2.

§

V4_0

Django 4.0.

§

V4_1

Django 4.1.

§

V4_2

Django 4.2.

§

V5_0

Django 5.0.

§

V5_1

Django 5.1.

Implementations§

source§

impl DjangoVersion

source

pub const CURRENT: Self = Self::V5_0

Current Django version.

Trait Implementations§

source§

impl Clone for DjangoVersion

source§

fn clone(&self) -> DjangoVersion

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V