Enum gitlab::systemhooks::HumanAccessLevel[][src]

pub enum HumanAccessLevel {
    Guest,
    Reporter,
    Developer,
    Maintainer,
    Owner,
}

Access levels for groups and projects.

Variants

Guest access (can see the project).

Reporter access (can open issues).

Developer access (can push branches, handle issues and merge requests).

Maintainer access (can push to protected branches).

Owner access (full rights).

Methods

impl HumanAccessLevel
[src]

String representation of the variant.

Trait Implementations

impl Debug for HumanAccessLevel
[src]

Formats the value using the given formatter. Read more

impl Clone for HumanAccessLevel
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for HumanAccessLevel
[src]

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

impl PartialOrd for HumanAccessLevel
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for HumanAccessLevel
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Serialize for HumanAccessLevel
[src]

Serialize this value into the given Serde serializer. Read more

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

Deserialize this value from the given Serde deserializer. Read more

impl From<HumanAccessLevel> for AccessLevel
[src]

Performs the conversion.

Auto Trait Implementations