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