pub enum GoogleScope {
Email,
Profile,
Openid,
DriveFile,
Youtube,
YoutubeReadonly,
AndroidPublisher,
Other(String),
}
Variants§
Trait Implementations§
Source§impl Clone for GoogleScope
impl Clone for GoogleScope
Source§fn clone(&self) -> GoogleScope
fn clone(&self) -> GoogleScope
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GoogleScope
impl Debug for GoogleScope
Source§impl<'de> Deserialize<'de> for GoogleScope
impl<'de> Deserialize<'de> for GoogleScope
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 GoogleScope
impl Display for GoogleScope
Source§impl FromStr for GoogleScope
impl FromStr for GoogleScope
Source§impl PartialEq for GoogleScope
impl PartialEq for GoogleScope
Source§impl Serialize for GoogleScope
impl Serialize for GoogleScope
Source§impl TryFrom<&str> for GoogleScope
impl TryFrom<&str> for GoogleScope
Source§impl TryFrom<String> for GoogleScope
impl TryFrom<String> for GoogleScope
impl Eq for GoogleScope
impl Scope for GoogleScope
impl StructuralPartialEq for GoogleScope
Auto Trait Implementations§
impl Freeze for GoogleScope
impl RefUnwindSafe for GoogleScope
impl Send for GoogleScope
impl Sync for GoogleScope
impl Unpin for GoogleScope
impl UnwindSafe for GoogleScope
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