pub enum LinkedinScope {
ReadLiteprofile,
ReadEmailaddress,
WriteMemberSocial,
Other(String),
}
Variants§
Trait Implementations§
Source§impl Clone for LinkedinScope
impl Clone for LinkedinScope
Source§fn clone(&self) -> LinkedinScope
fn clone(&self) -> LinkedinScope
Returns a duplicate 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 LinkedinScope
impl Debug for LinkedinScope
Source§impl<'de> Deserialize<'de> for LinkedinScope
impl<'de> Deserialize<'de> for LinkedinScope
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 LinkedinScope
impl Display for LinkedinScope
Source§impl FromStr for LinkedinScope
impl FromStr for LinkedinScope
Source§impl PartialEq for LinkedinScope
impl PartialEq for LinkedinScope
Source§impl Serialize for LinkedinScope
impl Serialize for LinkedinScope
Source§impl TryFrom<&str> for LinkedinScope
impl TryFrom<&str> for LinkedinScope
Source§impl TryFrom<String> for LinkedinScope
impl TryFrom<String> for LinkedinScope
impl Eq for LinkedinScope
impl Scope for LinkedinScope
impl StructuralPartialEq for LinkedinScope
Auto Trait Implementations§
impl Freeze for LinkedinScope
impl RefUnwindSafe for LinkedinScope
impl Send for LinkedinScope
impl Sync for LinkedinScope
impl Unpin for LinkedinScope
impl UnwindSafe for LinkedinScope
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