[][src]Struct cargo_parcel::Parcel

pub struct Parcel { /* fields omitted */ }

A description of a parcel's metadata.

Methods

impl Parcel[src]

pub fn build<T: Into<String>, U: Into<String>>(
    pkg_name: T,
    version: U
) -> ParcelBuilder
[src]

Create an empty parcel.

The given name and version strings will be used to determine installation paths for resources.

pub fn pkg_name(&self) -> &str[src]

Returns the package name.

pub fn pkg_version(&self) -> &str[src]

Returns the package version string.

pub fn pkg_data(&self) -> impl Iterator<Item = &Path>[src]

Returns the man pages to be installed.

pub fn cargo_binaries(&self) -> impl Iterator<Item = &Path>[src]

Returns the cargo binaries to be installed.

pub fn man_pages(&self) -> impl Iterator<Item = &ManSource>[src]

Returns the man pages to be installed.

pub fn action_from_env(&self) -> Result<Action, Error>[src]

Constructs an action from the command line arguments.

Trait Implementations

impl Clone for Parcel[src]

impl Debug for Parcel[src]

Auto Trait Implementations

impl RefUnwindSafe for Parcel

impl Send for Parcel

impl Sync for Parcel

impl Unpin for Parcel

impl UnwindSafe for Parcel

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,