pub enum PythonVirtualEnvKind {
Venv,
Virtualenv,
Conda,
Poetry,
Uv,
Pipenv,
}Expand description
Python virtual environment manager kind.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PythonVirtualEnvKind
impl Clone for PythonVirtualEnvKind
Source§fn clone(&self) -> PythonVirtualEnvKind
fn clone(&self) -> PythonVirtualEnvKind
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 moreSource§impl Debug for PythonVirtualEnvKind
impl Debug for PythonVirtualEnvKind
Source§impl Display for PythonVirtualEnvKind
impl Display for PythonVirtualEnvKind
Source§impl FromStr for PythonVirtualEnvKind
impl FromStr for PythonVirtualEnvKind
Source§impl Hash for PythonVirtualEnvKind
impl Hash for PythonVirtualEnvKind
Source§impl Ord for PythonVirtualEnvKind
impl Ord for PythonVirtualEnvKind
Source§fn cmp(&self, other: &PythonVirtualEnvKind) -> Ordering
fn cmp(&self, other: &PythonVirtualEnvKind) -> 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 for PythonVirtualEnvKind
impl PartialEq for PythonVirtualEnvKind
Source§impl PartialOrd for PythonVirtualEnvKind
impl PartialOrd for PythonVirtualEnvKind
impl Copy for PythonVirtualEnvKind
impl Eq for PythonVirtualEnvKind
impl StructuralPartialEq for PythonVirtualEnvKind
Auto Trait Implementations§
impl Freeze for PythonVirtualEnvKind
impl RefUnwindSafe for PythonVirtualEnvKind
impl Send for PythonVirtualEnvKind
impl Sync for PythonVirtualEnvKind
impl Unpin for PythonVirtualEnvKind
impl UnsafeUnpin for PythonVirtualEnvKind
impl UnwindSafe for PythonVirtualEnvKind
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