Enum git_checks::AttributeState[][src]

pub enum AttributeState {
    Unspecified,
    Set,
    Unset,
    Value(String),
}

States attributes may be in.

Variants

The attribute is neither set nor unset.

The attribute is set.

The attribute is unset.

The attribute is set with the given value.

Trait Implementations

impl Debug for AttributeState
[src]

Formats the value using the given formatter. Read more

impl Clone for AttributeState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AttributeState
[src]

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

This method tests for !=.

impl Eq for AttributeState
[src]

Auto Trait Implementations