Struct pyo3_build_config::PythonVersion
source · pub struct PythonVersion {
pub major: u8,
pub minor: u8,
}
Fields§
§major: u8
§minor: u8
Trait Implementations§
source§impl Clone for PythonVersion
impl Clone for PythonVersion
source§fn clone(&self) -> PythonVersion
fn clone(&self) -> PythonVersion
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PythonVersion
impl Debug for PythonVersion
source§impl Display for PythonVersion
impl Display for PythonVersion
source§impl FromStr for PythonVersion
impl FromStr for PythonVersion
source§impl Ord for PythonVersion
impl Ord for PythonVersion
source§fn cmp(&self, other: &PythonVersion) -> Ordering
fn cmp(&self, other: &PythonVersion) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<PythonVersion> for PythonVersion
impl PartialEq<PythonVersion> for PythonVersion
source§fn eq(&self, other: &PythonVersion) -> bool
fn eq(&self, other: &PythonVersion) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<PythonVersion> for PythonVersion
impl PartialOrd<PythonVersion> for PythonVersion
source§fn partial_cmp(&self, other: &PythonVersion) -> Option<Ordering>
fn partial_cmp(&self, other: &PythonVersion) -> Option<Ordering>
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 moreimpl Copy for PythonVersion
impl Eq for PythonVersion
impl StructuralEq for PythonVersion
impl StructuralPartialEq for PythonVersion
Auto Trait Implementations§
impl RefUnwindSafe for PythonVersion
impl Send for PythonVersion
impl Sync for PythonVersion
impl Unpin for PythonVersion
impl UnwindSafe for PythonVersion
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