Enum gitlab::systemhooks::HumanAccessLevel
[−]
[src]
pub enum HumanAccessLevel {
Guest,
Reporter,
Developer,
Master,
Owner,
}Access levels for groups and projects.
Variants
GuestGuest access (can see the project).
ReporterReporter access (can open issues).
DeveloperDeveloper access (can push branches, handle issues and merge requests).
MasterMaster access (can push to protected branches).
OwnerOwner access (full rights).
Methods
impl HumanAccessLevel[src]
Trait Implementations
impl Debug for HumanAccessLevel[src]
impl Clone for HumanAccessLevel[src]
fn clone(&self) -> HumanAccessLevel
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 Copy for HumanAccessLevel[src]
impl PartialEq for HumanAccessLevel[src]
fn eq(&self, __arg_0: &HumanAccessLevel) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl Eq for HumanAccessLevel[src]
impl PartialOrd for HumanAccessLevel[src]
fn partial_cmp(&self, __arg_0: &HumanAccessLevel) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool1.0.0
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool1.0.0
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Rhs) -> bool1.0.0
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Rhs) -> bool1.0.0
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]
fn cmp(&self, __arg_0: &HumanAccessLevel) -> Ordering
This method returns an Ordering between self and other. Read more
impl Serialize for HumanAccessLevel[src]
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: Serializer
Serialize this value into the given Serde serializer. Read more
impl Deserialize for HumanAccessLevel[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: Deserializer
Deserialize this value from the given Serde deserializer. Read more