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]

[src]

Formats the value using the given formatter.

impl Clone for AttributeState
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for AttributeState
[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 Eq for AttributeState
[src]