Struct pyo3_pack::WheelMetadata [−][src]
pub struct WheelMetadata {
pub metadata21: Metadata21,
pub scripts: HashMap<String, String>,
pub module_name: String,
}The metadata required to generate the .dist-info directory
Fields
metadata21: Metadata21
Python Package Metadata 2.1
scripts: HashMap<String, String>
The [console_scripts] for the entry_points.txt
module_name: String
The name of the module can be distinct from the package name, mostly because package names normally contain minuses while module names have underscores. The package name is part of metadata21
Trait Implementations
impl Debug for WheelMetadata[src]
impl Debug for WheelMetadatafn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for WheelMetadata[src]
impl Clone for WheelMetadatafn clone(&self) -> WheelMetadata[src]
fn clone(&self) -> WheelMetadataReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Eq for WheelMetadata[src]
impl Eq for WheelMetadataimpl PartialEq for WheelMetadata[src]
impl PartialEq for WheelMetadatafn eq(&self, other: &WheelMetadata) -> bool[src]
fn eq(&self, other: &WheelMetadata) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &WheelMetadata) -> bool[src]
fn ne(&self, other: &WheelMetadata) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for WheelMetadata
impl Send for WheelMetadataimpl Sync for WheelMetadata
impl Sync for WheelMetadata