pub struct AvailableVersion {
pub version: PythonVersion,
pub release_tag: String,
}Expand description
Information about an available Python version
Fields§
§version: PythonVersion§release_tag: StringThe release tag from python-build-standalone
Implementations§
Source§impl AvailableVersion
impl AvailableVersion
pub fn new(version: PythonVersion, release_tag: impl Into<String>) -> Self
Trait Implementations§
Source§impl Clone for AvailableVersion
impl Clone for AvailableVersion
Source§fn clone(&self) -> AvailableVersion
fn clone(&self) -> AvailableVersion
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for AvailableVersion
impl RefUnwindSafe for AvailableVersion
impl Send for AvailableVersion
impl Sync for AvailableVersion
impl Unpin for AvailableVersion
impl UnwindSafe for AvailableVersion
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