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 more
sourceimpl Debug for ComponentFlavor
impl Debug for ComponentFlavor
sourceimpl Display for ComponentFlavor
impl Display for ComponentFlavor
sourceimpl Ord for ComponentFlavor
impl Ord for ComponentFlavor
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>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
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 more
impl 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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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