[][src]Struct python_packaging::resource::PythonPackageDistributionResource

pub struct PythonPackageDistributionResource {
    pub location: PythonPackageDistributionResourceFlavor,
    pub package: String,
    pub version: String,
    pub name: String,
    pub data: DataLocation,
}

Represents a file defining Python package metadata.

Instances of this correspond to files in a <package>-<version>.dist-info or .egg-info directory.

In terms of importlib.metadata terminology, instances correspond to files in a Distribution.

Fields

location: PythonPackageDistributionResourceFlavor

Where the resource is materialized.

package: String

The name of the Python package this resource is associated with.

version: String

Version string of Python package.

name: String

Name of this resource within the distribution.

Corresponds to the file name in the .dist-info directory for this package distribution.

data: DataLocation

The raw content of the distribution resource.

Implementations

impl PythonPackageDistributionResource[src]

pub fn to_memory(&self) -> Result<Self>[src]

pub fn resolve_path(&self, prefix: &str) -> PathBuf[src]

Resolve filesystem path to this resource file.

Trait Implementations

impl Clone for PythonPackageDistributionResource[src]

impl Debug for PythonPackageDistributionResource[src]

impl<'a> From<&'a PythonPackageDistributionResource> for PythonResource<'a>[src]

impl<'a> From<PythonPackageDistributionResource> for PythonResource<'a>[src]

impl PartialEq<PythonPackageDistributionResource> for PythonPackageDistributionResource[src]

impl StructuralPartialEq for PythonPackageDistributionResource[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.