Struct cargo_util_schemas::manifest::TomlPackage

source ·
pub struct TomlPackage {
Show 32 fields pub edition: Option<InheritableString>, pub rust_version: Option<InheritableRustVersion>, pub name: PackageName, pub version: Option<InheritableSemverVersion>, pub authors: Option<InheritableVecString>, pub build: Option<StringOrBool>, pub metabuild: Option<StringOrVec>, pub default_target: Option<String>, pub forced_target: Option<String>, pub links: Option<String>, pub exclude: Option<InheritableVecString>, pub include: Option<InheritableVecString>, pub publish: Option<InheritableVecStringOrBool>, pub workspace: Option<String>, pub im_a_teapot: Option<bool>, pub autobins: Option<bool>, pub autoexamples: Option<bool>, pub autotests: Option<bool>, pub autobenches: Option<bool>, pub default_run: Option<String>, pub description: Option<InheritableString>, pub homepage: Option<InheritableString>, pub documentation: Option<InheritableString>, pub readme: Option<InheritableStringOrBool>, pub keywords: Option<InheritableVecString>, pub categories: Option<InheritableVecString>, pub license: Option<InheritableString>, pub license_file: Option<InheritableString>, pub repository: Option<InheritableString>, pub resolver: Option<String>, pub metadata: Option<Value>, pub _invalid_cargo_features: Option<InvalidCargoFeatures>,
}
Expand description

Represents the package/project sections of a Cargo.toml.

Note that the order of the fields matters, since this is the order they are serialized to a TOML file. For example, you cannot have values after the field metadata, since it is a table and values cannot appear after tables.

Fields§

§edition: Option<InheritableString>§rust_version: Option<InheritableRustVersion>§name: PackageName§version: Option<InheritableSemverVersion>§authors: Option<InheritableVecString>§build: Option<StringOrBool>§metabuild: Option<StringOrVec>§default_target: Option<String>§forced_target: Option<String>§links: Option<String>§exclude: Option<InheritableVecString>§include: Option<InheritableVecString>§publish: Option<InheritableVecStringOrBool>§workspace: Option<String>§im_a_teapot: Option<bool>§autobins: Option<bool>§autoexamples: Option<bool>§autotests: Option<bool>§autobenches: Option<bool>§default_run: Option<String>§description: Option<InheritableString>§homepage: Option<InheritableString>§documentation: Option<InheritableString>§readme: Option<InheritableStringOrBool>§keywords: Option<InheritableVecString>§categories: Option<InheritableVecString>§license: Option<InheritableString>§license_file: Option<InheritableString>§repository: Option<InheritableString>§resolver: Option<String>§metadata: Option<Value>§_invalid_cargo_features: Option<InvalidCargoFeatures>

Provide a helpful error message for a common user error.

Trait Implementations§

source§

impl Clone for TomlPackage

source§

fn clone(&self) -> TomlPackage

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TomlPackage

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for TomlPackage

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for TomlPackage

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>

source§

fn do_erased_serialize( &self, serializer: &mut dyn Serializer ) -> Result<(), ErrorImpl>

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

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