[][src]Struct cli::types::PackageInfo

pub struct PackageInfo {
    pub name: Option<String>,
    pub version: Option<String>,
    pub description: Option<String>,
    pub license: Option<String>,
    pub documentation: Option<String>,
    pub homepage: Option<String>,
    pub repository: Option<String>,
}

Holds crate package information loaded from the Cargo.toml file package section.

Fields

name: Option<String>

name

version: Option<String>

version

description: Option<String>

description

license: Option<String>

license

documentation: Option<String>

documentation link

homepage: Option<String>

homepage link

repository: Option<String>

repository link

Methods

impl PackageInfo[src]

pub fn new() -> PackageInfo[src]

Creates and returns a new instance.

Trait Implementations

impl Clone for PackageInfo[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for PackageInfo[src]

impl Serialize for PackageInfo[src]

impl<'de> Deserialize<'de> for PackageInfo[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]