cargo_util_schemas::manifest

Type Alias TomlLibTarget

Source
pub type TomlLibTarget = TomlTarget;

Aliased Type§

struct TomlLibTarget {
Show 15 fields pub name: Option<String>, pub crate_type: Option<Vec<String>>, pub crate_type2: Option<Vec<String>>, pub path: Option<PathValue>, pub filename: Option<String>, pub test: Option<bool>, pub doctest: Option<bool>, pub bench: Option<bool>, pub doc: Option<bool>, pub doc_scrape_examples: Option<bool>, pub proc_macro: Option<bool>, pub proc_macro2: Option<bool>, pub harness: Option<bool>, pub required_features: Option<Vec<String>>, pub edition: Option<String>,
}

Fields§

§name: Option<String>§crate_type: Option<Vec<String>>§crate_type2: Option<Vec<String>>§path: Option<PathValue>§filename: Option<String>§test: Option<bool>§doctest: Option<bool>§bench: Option<bool>§doc: Option<bool>§doc_scrape_examples: Option<bool>§proc_macro: Option<bool>§proc_macro2: Option<bool>§harness: Option<bool>§required_features: Option<Vec<String>>§edition: Option<String>

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 176 bytes

Implementations

Trait Implementations

Source§

impl Clone for TomlTarget

Source§

fn clone(&self) -> TomlTarget

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 TomlTarget

Source§

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

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

impl Default for TomlTarget

Source§

fn default() -> TomlTarget

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for TomlTarget

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 TomlTarget

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