Enum db_dump::badges::BadgeType[][src]

#[non_exhaustive]
pub enum BadgeType {
Show variants Appveyor { repository: String, project_name: Option<String>, branch: Option<String>, service: Option<String>, id: Option<String>, }, AzureDevops { project: String, pipeline: String, build: Option<String>, }, BitbucketPipelines { repository: String, branch: String, }, CircleCi { repository: String, branch: Option<String>, }, CirrusCi { repository: String, branch: Option<String>, }, Codecov { repository: String, branch: Option<String>, service: Option<String>, }, Coveralls { repository: String, branch: Option<String>, service: Option<String>, }, Gitlab { repository: String, branch: Option<String>, tag: Option<String>, }, IsItMaintainedIssueResolution { repository: String, service: Option<String>, }, IsItMaintainedOpenIssues { repository: String, service: Option<String>, }, Maintenance { status: MaintenanceStatus, }, TravisCi { repository: String, branch: Option<String>, service: Option<String>, master: Option<String>, tld: Option<String>, }, Other { badge_type: String, attributes: Map<String, String>, },
}

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Appveyor
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Show fields

Fields of Appveyor

repository: Stringproject_name: Option<String>branch: Option<String>service: Option<String>id: Option<String>
AzureDevops
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Show fields

Fields of AzureDevops

project: Stringpipeline: Stringbuild: Option<String>
BitbucketPipelines
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Show fields

Fields of BitbucketPipelines

repository: Stringbranch: String
CircleCi
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Show fields

Fields of CircleCi

repository: Stringbranch: Option<String>
CirrusCi
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Show fields

Fields of CirrusCi

repository: Stringbranch: Option<String>
Codecov
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Show fields

Fields of Codecov

repository: Stringbranch: Option<String>service: Option<String>
Coveralls
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Show fields

Fields of Coveralls

repository: Stringbranch: Option<String>service: Option<String>
Gitlab
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Show fields

Fields of Gitlab

repository: Stringbranch: Option<String>tag: Option<String>
IsItMaintainedIssueResolution
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Show fields

Fields of IsItMaintainedIssueResolution

repository: Stringservice: Option<String>
IsItMaintainedOpenIssues
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Show fields

Fields of IsItMaintainedOpenIssues

repository: Stringservice: Option<String>
Maintenance
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Show fields

Fields of Maintenance

status: MaintenanceStatus
TravisCi
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Show fields

Fields of TravisCi

repository: Stringbranch: Option<String>service: Option<String>master: Option<String>tld: Option<String>
Other
Show fields

Fields of Other

badge_type: Stringattributes: Map<String, String>

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.