Struct pyo3::PythonVersionInfo 
source · pub struct PythonVersionInfo<'py> {
    pub major: u8,
    pub minor: u8,
    pub patch: u8,
    pub suffix: Option<&'py str>,
}Expand description
Represents the major, minor, and patch (if any) versions of this interpreter.
This struct is usually created with Python::version.
§Examples
Python::with_gil(|py| {
    // PyO3 supports Python 3.7 and up.
    assert!(py.version_info() >= (3, 7));
    assert!(py.version_info() >= (3, 7, 0));
});Fields§
§major: u8Python major version (e.g. 3).
minor: u8Python minor version (e.g. 11).
patch: u8Python patch version (e.g. 0).
suffix: Option<&'py str>Python version suffix, if applicable (e.g. a0).
Trait Implementations§
source§impl<'py> Debug for PythonVersionInfo<'py>
 
impl<'py> Debug for PythonVersionInfo<'py>
source§impl PartialEq<(u8, u8)> for PythonVersionInfo<'_>
 
impl PartialEq<(u8, u8)> for PythonVersionInfo<'_>
source§impl PartialEq<(u8, u8, u8)> for PythonVersionInfo<'_>
 
impl PartialEq<(u8, u8, u8)> for PythonVersionInfo<'_>
source§impl PartialOrd<(u8, u8)> for PythonVersionInfo<'_>
 
impl PartialOrd<(u8, u8)> for PythonVersionInfo<'_>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read moresource§impl PartialOrd<(u8, u8, u8)> for PythonVersionInfo<'_>
 
impl PartialOrd<(u8, u8, u8)> for PythonVersionInfo<'_>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read moreAuto Trait Implementations§
impl<'py> Freeze for PythonVersionInfo<'py>
impl<'py> RefUnwindSafe for PythonVersionInfo<'py>
impl<'py> Send for PythonVersionInfo<'py>
impl<'py> Sync for PythonVersionInfo<'py>
impl<'py> Unpin for PythonVersionInfo<'py>
impl<'py> UnwindSafe for PythonVersionInfo<'py>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more