Struct erg_common::python_util::PythonVersion
source · pub struct PythonVersion {
pub major: u8,
pub minor: Option<u8>,
pub micro: Option<u8>,
}
Fields§
§major: u8
§minor: Option<u8>
§micro: Option<u8>
Implementations§
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 Default for PythonVersion
impl Default for PythonVersion
source§impl FromStr for PythonVersion
impl FromStr for PythonVersion
source§impl Hash for PythonVersion
impl Hash for PythonVersion
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 ==
.impl 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