[][src]Struct new_home_application::application::application::ApplicationInfo

pub struct ApplicationInfo {
    pub name: String,
    pub description: String,
    pub authors: String,
    pub version: String,
}

Contains the information about the app author and the app itself

Fields

name: String

Contains the name of the app

description: String

Contains the description of the app and what it is meant to do

authors: String

A comma separated list of authors

version: String

A version string for the app Can be "testing" or "1.6.4-rc.X" for example Aims to follow the semver pattern in public releases

Trait Implementations

impl Clone for ApplicationInfo[src]

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

impl Serialize for ApplicationInfo[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.