Enum license_exprs::LicenseExpr [] [src]

pub enum LicenseExpr<'a> {
    License(&'a str),
    Exception(&'a str),
    And,
    Or,
    With,
}

Variants

License(&'a str)Exception(&'a str)AndOrWith

Trait Implementations

impl<'a> Copy for LicenseExpr<'a>
[src]

impl<'a> Clone for LicenseExpr<'a>
[src]

fn clone(&self) -> LicenseExpr<'a>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl<'a> Debug for LicenseExpr<'a>
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl<'a> Display for LicenseExpr<'a>
[src]

fn fmt(&self, format: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.