[][src]Struct cargo_manifest::Badges

pub struct Badges {
    pub appveyor: Option<Badge>,
    pub circle_ci: Option<Badge>,
    pub gitlab: Option<Badge>,
    pub travis_ci: Option<Badge>,
    pub codecov: Option<Badge>,
    pub coveralls: Option<Badge>,
    pub is_it_maintained_issue_resolution: Option<Badge>,
    pub is_it_maintained_open_issues: Option<Badge>,
    pub maintenance: Maintenance,
}

Fields

appveyor: Option<Badge>

Appveyor: repository is required. branch is optional; default is master service is optional; valid values are github (default), bitbucket, and gitlab; id is optional; you can specify the appveyor project id if you want to use that instead. project_name is optional; use when the repository name differs from the appveyor project name.

circle_ci: Option<Badge>

Circle CI: repository is required. branch is optional; default is master

gitlab: Option<Badge>

GitLab: repository is required. branch is optional; default is master

travis_ci: Option<Badge>

Travis CI: repository in format "/" is required. branch is optional; default is master

codecov: Option<Badge>

Codecov: repository is required. branch is optional; default is master service is optional; valid values are github (default), bitbucket, and gitlab.

coveralls: Option<Badge>

Coveralls: repository is required. branch is optional; default is master service is optional; valid values are github (default) and bitbucket.

is_it_maintained_issue_resolution: Option<Badge>

Is it maintained resolution time: repository is required.

is_it_maintained_open_issues: Option<Badge>

Is it maintained percentage of open issues: repository is required.

maintenance: Maintenance

Maintenance: status is required. Available options are actively-developed, passively-maintained, as-is, experimental, looking-for-maintainer, deprecated, and the default none, which displays no badge on crates.io.

Trait Implementations

impl Clone for Badges[src]

impl Debug for Badges[src]

impl Default for Badges[src]

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

impl PartialEq<Badges> for Badges[src]

impl Serialize for Badges[src]

impl StructuralPartialEq for Badges[src]

Auto Trait Implementations

impl RefUnwindSafe for Badges

impl Send for Badges

impl Sync for Badges

impl Unpin for Badges

impl UnwindSafe for Badges

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> 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.