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