Enum oauth2_microsoft::MicrosoftScope
source · pub enum MicrosoftScope {
Openid,
Email,
Profile,
OfflineAccess,
UserRead,
Other(String),
}
Variants
Openid
Email
Profile
OfflineAccess
UserRead
Other(String)
Trait Implementations
sourceimpl Clone for MicrosoftScope
impl Clone for MicrosoftScope
sourcefn clone(&self) -> MicrosoftScope
fn clone(&self) -> MicrosoftScope
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for MicrosoftScope
impl Debug for MicrosoftScope
sourceimpl<'de> Deserialize<'de> for MicrosoftScope
impl<'de> Deserialize<'de> for MicrosoftScope
sourcefn 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
sourceimpl Display for MicrosoftScope
impl Display for MicrosoftScope
sourceimpl FromStr for MicrosoftScope
impl FromStr for MicrosoftScope
sourceimpl PartialEq<MicrosoftScope> for MicrosoftScope
impl PartialEq<MicrosoftScope> for MicrosoftScope
sourcefn eq(&self, other: &MicrosoftScope) -> bool
fn eq(&self, other: &MicrosoftScope) -> bool
sourceimpl Serialize for MicrosoftScope
impl Serialize for MicrosoftScope
sourceimpl TryFrom<&str> for MicrosoftScope
impl TryFrom<&str> for MicrosoftScope
sourceimpl TryFrom<String> for MicrosoftScope
impl TryFrom<String> for MicrosoftScope
impl Eq for MicrosoftScope
impl Scope for MicrosoftScope
impl StructuralEq for MicrosoftScope
impl StructuralPartialEq for MicrosoftScope
Auto Trait Implementations
impl RefUnwindSafe for MicrosoftScope
impl Send for MicrosoftScope
impl Sync for MicrosoftScope
impl Unpin for MicrosoftScope
impl UnwindSafe for MicrosoftScope
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more