pub enum ComponentFlavor {
PythonDistribution(String),
PythonStandardLibraryModule(String),
PythonStandardLibraryExtensionModule(String),
PythonExtensionModule(String),
PythonModule(String),
Library(String),
RustCrate(String),
}
Expand description
Describes the type of a software component.
Variants
PythonDistribution(String)
A Python distribution.
PythonStandardLibraryModule(String)
A Python module in the standard library.
PythonStandardLibraryExtensionModule(String)
A compiled Python extension module in the standard library.
PythonExtensionModule(String)
A compiled Python extension module.
PythonModule(String)
A Python module.
Library(String)
A generic software library.
RustCrate(String)
A Rust crate.
Implementations
sourceimpl ComponentFlavor
impl ComponentFlavor
sourcepub fn is_python_standard_library(&self) -> bool
pub fn is_python_standard_library(&self) -> bool
Whether this component is part of the Python standard library.
pub fn python_module_name(&self) -> Option<&str>
sourcepub fn is_python_distribution_component(&self) -> bool
pub fn is_python_distribution_component(&self) -> bool
Whether the component is part of a Python distribution.
Trait Implementations
sourceimpl Clone for ComponentFlavor
impl Clone for ComponentFlavor
sourcefn clone(&self) -> ComponentFlavor
fn clone(&self) -> ComponentFlavor
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ComponentFlavor
impl Debug for ComponentFlavor
sourceimpl Display for ComponentFlavor
impl Display for ComponentFlavor
sourceimpl Ord for ComponentFlavor
impl Ord for ComponentFlavor
1.21.0 · sourcefn 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
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<ComponentFlavor> for ComponentFlavor
impl PartialEq<ComponentFlavor> for ComponentFlavor
sourceimpl PartialOrd<ComponentFlavor> for ComponentFlavor
impl PartialOrd<ComponentFlavor> for ComponentFlavor
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
1.0.0 · sourcefn 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 Eq for ComponentFlavor
Auto Trait Implementations
impl RefUnwindSafe for ComponentFlavor
impl Send for ComponentFlavor
impl Sync for ComponentFlavor
impl Unpin for ComponentFlavor
impl UnwindSafe for ComponentFlavor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more