pub struct NewCrate {
Show 17 fields pub name: String, pub vers: String, pub deps: Vec<NewCrateDependency>, pub features: BTreeMap<String, Vec<String>>, pub authors: Vec<String>, pub description: Option<String>, pub documentation: Option<String>, pub homepage: Option<String>, pub readme: Option<String>, pub readme_file: Option<String>, pub keywords: Vec<String>, pub categories: Vec<String>, pub license: Option<String>, pub license_file: Option<String>, pub repository: Option<String>, pub badges: BTreeMap<String, BTreeMap<String, String>>, pub links: Option<String>,
}

Fields

name: Stringvers: Stringdeps: Vec<NewCrateDependency>features: BTreeMap<String, Vec<String>>authors: Vec<String>description: Option<String>documentation: Option<String>homepage: Option<String>readme: Option<String>readme_file: Option<String>keywords: Vec<String>categories: Vec<String>license: Option<String>license_file: Option<String>repository: Option<String>badges: BTreeMap<String, BTreeMap<String, String>>links: Option<String>

Trait Implementations

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.