pub enum GitlabScope {
Api,
ReadUser,
ReadApi,
ReadRepository,
WriteRepository,
ReadRegistry,
WriteRegistry,
Sudo,
Openid,
Profile,
Email,
Other(String),
}
Variants§
Api
ReadUser
ReadApi
ReadRepository
WriteRepository
ReadRegistry
WriteRegistry
Sudo
Openid
Profile
Other(String)
Trait Implementations§
Source§impl Clone for GitlabScope
impl Clone for GitlabScope
Source§fn clone(&self) -> GitlabScope
fn clone(&self) -> GitlabScope
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 GitlabScope
impl Debug for GitlabScope
Source§impl<'de> Deserialize<'de> for GitlabScope
impl<'de> Deserialize<'de> for GitlabScope
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 GitlabScope
impl Display for GitlabScope
Source§impl FromStr for GitlabScope
impl FromStr for GitlabScope
Source§impl PartialEq for GitlabScope
impl PartialEq for GitlabScope
Source§impl Serialize for GitlabScope
impl Serialize for GitlabScope
Source§impl TryFrom<&str> for GitlabScope
impl TryFrom<&str> for GitlabScope
Source§impl TryFrom<String> for GitlabScope
impl TryFrom<String> for GitlabScope
impl Eq for GitlabScope
impl Scope for GitlabScope
impl StructuralPartialEq for GitlabScope
Auto Trait Implementations§
impl Freeze for GitlabScope
impl RefUnwindSafe for GitlabScope
impl Send for GitlabScope
impl Sync for GitlabScope
impl Unpin for GitlabScope
impl UnwindSafe for GitlabScope
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