Enum gitlab::types::AccessLevel
source · pub enum AccessLevel {
Anonymous,
Guest,
Reporter,
Developer,
Maintainer,
Owner,
Admin,
}
Expand description
Access levels for groups and projects.
Variants§
Anonymous
Anonymous access.
Guest
Guest access (can see the project).
Reporter
Reporter access (can open issues).
Developer
Developer access (can push branches, handle issues and merge requests).
Maintainer
Maintainer access (can push to protected branches).
Owner
Owner access (full rights).
Admin
Admin access (full rights).
Implementations§
Trait Implementations§
source§impl Clone for AccessLevel
impl Clone for AccessLevel
source§fn clone(&self) -> AccessLevel
fn clone(&self) -> AccessLevel
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AccessLevel
impl Debug for AccessLevel
source§impl<'de> Deserialize<'de> for AccessLevel
impl<'de> Deserialize<'de> for AccessLevel
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for AccessLevel
impl Display for AccessLevel
source§impl From<AccessLevel> for u64
impl From<AccessLevel> for u64
source§fn from(access: AccessLevel) -> Self
fn from(access: AccessLevel) -> Self
Converts to this type from the input type.
source§impl From<HumanAccessLevel> for AccessLevel
impl From<HumanAccessLevel> for AccessLevel
source§fn from(access: HumanAccessLevel) -> Self
fn from(access: HumanAccessLevel) -> Self
Converts to this type from the input type.
source§impl From<u64> for AccessLevel
impl From<u64> for AccessLevel
source§impl Ord for AccessLevel
impl Ord for AccessLevel
source§fn cmp(&self, other: &AccessLevel) -> Ordering
fn cmp(&self, other: &AccessLevel) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<AccessLevel> for AccessLevel
impl PartialEq<AccessLevel> for AccessLevel
source§fn eq(&self, other: &AccessLevel) -> bool
fn eq(&self, other: &AccessLevel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<AccessLevel> for AccessLevel
impl PartialOrd<AccessLevel> for AccessLevel
source§fn partial_cmp(&self, other: &AccessLevel) -> Option<Ordering>
fn partial_cmp(&self, other: &AccessLevel) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for AccessLevel
impl Serialize for AccessLevel
impl Copy for AccessLevel
impl Eq for AccessLevel
impl StructuralEq for AccessLevel
impl StructuralPartialEq for AccessLevel
Auto Trait Implementations§
impl RefUnwindSafe for AccessLevel
impl Send for AccessLevel
impl Sync for AccessLevel
impl Unpin for AccessLevel
impl UnwindSafe for AccessLevel
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.