DjangoVersion

Enum DjangoVersion 

Source
pub enum DjangoVersion {
Show 22 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, V5_2, V6_0, V6_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.

§

V5_2

Django 5.2.

§

V6_0

Django 6.0.

§

V6_1

Django 6.1.

Implementations§

Source§

impl DjangoVersion

Source

pub const CURRENT: Self = Self::V5_2

Current Django version.

Trait Implementations§

Source§

impl Clone for DjangoVersion

Source§

fn clone(&self) -> DjangoVersion

Returns a duplicate 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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

Source§

type Output = T

Should always be Self
Source§

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

Source§

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

Source§

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

Source§

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