[][src]Struct pommes::Project

pub struct Project {
    pub artifact_id: String,
    pub build: Option<Build>,
    pub contributors: Option<Contributors>,
    pub dependencies: Option<Dependencies>,
    pub dependency_management: Option<Dependencies>,
    pub description: Option<String>,
    pub developers: Option<Developers>,
    pub group_id: Option<String>,
    pub inception_year: Option<String>,
    pub licenses: Option<Licenses>,
    pub model_version: String,
    pub modules: Option<Modules>,
    pub name: Option<String>,
    pub organization: Option<Organization>,
    pub packaging: Option<String>,
    pub parent: Option<Parent>,
    pub plugin_repositories: Option<PluginRepositories>,
    pub profiles: Option<Profiles>,
    pub properties: HashMap<String, String>,
    pub repositories: Option<Repositories>,
    pub url: Option<String>,
    pub version: Option<String>,
}

Fields

artifact_id: Stringbuild: Option<Build>contributors: Option<Contributors>dependencies: Option<Dependencies>dependency_management: Option<Dependencies>description: Option<String>developers: Option<Developers>group_id: Option<String>inception_year: Option<String>licenses: Option<Licenses>model_version: Stringmodules: Option<Modules>name: Option<String>organization: Option<Organization>packaging: Option<String>parent: Option<Parent>plugin_repositories: Option<PluginRepositories>profiles: Option<Profiles>properties: HashMap<String, String>repositories: Option<Repositories>url: Option<String>version: Option<String>

Trait Implementations

impl Debug for Project[src]

impl Default for Project[src]

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

impl PartialEq<Project> for Project[src]

impl StructuralPartialEq for Project[src]

Auto Trait Implementations

impl RefUnwindSafe for Project

impl Send for Project

impl Sync for Project

impl Unpin for Project

impl UnwindSafe for Project

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: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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.