Enum gitlab::types::IssueState [] [src]

pub enum IssueState {
    Opened,
    Closed,
    Reopened,
}

The states an issue may be in.

Variants

The issue is open.

The issue has been closed.

The issue has been opened after being closed.

Methods

impl IssueState
[src]

String representation of the variant.

Trait Implementations

impl Debug for IssueState
[src]

Formats the value using the given formatter.

impl Clone for IssueState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for IssueState
[src]

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

impl Serialize for IssueState
[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for IssueState
[src]

Deserialize this value from the given Serde deserializer. Read more