Enum cargo_toml_builder::types::License [] [src]

pub enum License {
    Mit,
    Apache2,
    Gplv3,
    Bsd,
    Other(String),
}

Variants

Trait Implementations

impl Debug for License
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for License
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for License
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl From<String> for License
[src]

[src]

Performs the conversion.

impl<'a> From<&'a str> for License
[src]

[src]

Performs the conversion.

impl Display for License
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for License

impl Sync for License