Enum python_packaging::resource_collection::AddResourceAction [−][src]
pub enum AddResourceAction {
NoInclude(String),
BytecodeOptimizationLevelMismatch(String),
Added(String, ConcreteResourceLocation),
AddedBuiltinExtensionModule(String),
}
Expand description
Describes the result of adding a resource to a collector.
Variants
NoInclude(String)
Resource with specified description wasn’t added because add_include=false.
Tuple Fields of NoInclude
0: String
BytecodeOptimizationLevelMismatch(String)
Resource not added because of Python bytecode optimization level mismatch.
Tuple Fields of BytecodeOptimizationLevelMismatch
0: String
Added(String, ConcreteResourceLocation)
Resource with specified description was added to the specified location.
Tuple Fields of Added
AddedBuiltinExtensionModule(String)
Built-in Python extension module.
Tuple Fields of AddedBuiltinExtensionModule
0: String
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AddResourceAction
impl Send for AddResourceAction
impl Sync for AddResourceAction
impl Unpin for AddResourceAction
impl UnwindSafe for AddResourceAction
Blanket Implementations
Mutably borrows from an owned value. Read more