[][src]Struct abscissa_generator::properties::Properties

pub struct Properties {
    pub abscissa: Properties,
    pub name: App,
    pub title: String,
    pub description: String,
    pub authors: Vec<Author>,
    pub version: Version,
    pub edition: Edition,
    pub patch_crates_io: Option<String>,
    pub application_type: Type,
    pub command_type: Type,
    pub config_type: Type,
}

Application properties: configurable and computed values for names and other configurable values consumed from the templates.

Fields

abscissa: Properties

Abscissa-related properties

name: App

Application name (i.e. crate name)

title: String

Application title (longer, often capitalized name)

description: String

Application description (i.e. crate description)

authors: Vec<Author>

Application authors,

version: Version

Application version

edition: Edition

Rust edition to use

patch_crates_io: Option<String>

Apply patches to crates.io

application_type: Type

Application type name

command_type: Type

Entrypoint command name

config_type: Type

Configuration type name

Trait Implementations

impl Debug for Properties[src]

impl Serialize for Properties[src]

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

fn deserialize_in_place<D>(
    deserializer: D,
    place: &mut Self
) -> Result<(), <D as Deserializer<'de>>::Error> where
    D: Deserializer<'de>, 
[src]

Deserializes a value into self from the given Deserializer. Read more

Auto Trait Implementations

Blanket Implementations

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

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

impl<T> BorrowMut<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]