pub enum LinkedAccountSpotifyInputType {
SpotifyOauth,
}Expand description
LinkedAccountSpotifyInputType
JSON schema
{
"type": "string",
"enum": [
"spotify_oauth"
]
}Variants§
SpotifyOauth
Trait Implementations§
Source§impl Clone for LinkedAccountSpotifyInputType
impl Clone for LinkedAccountSpotifyInputType
Source§fn clone(&self) -> LinkedAccountSpotifyInputType
fn clone(&self) -> LinkedAccountSpotifyInputType
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<'de> Deserialize<'de> for LinkedAccountSpotifyInputType
impl<'de> Deserialize<'de> for LinkedAccountSpotifyInputType
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 From<&LinkedAccountSpotifyInputType> for LinkedAccountSpotifyInputType
impl From<&LinkedAccountSpotifyInputType> for LinkedAccountSpotifyInputType
Source§fn from(value: &LinkedAccountSpotifyInputType) -> Self
fn from(value: &LinkedAccountSpotifyInputType) -> Self
Converts to this type from the input type.
Source§impl Hash for LinkedAccountSpotifyInputType
impl Hash for LinkedAccountSpotifyInputType
Source§impl Ord for LinkedAccountSpotifyInputType
impl Ord for LinkedAccountSpotifyInputType
Source§fn cmp(&self, other: &LinkedAccountSpotifyInputType) -> Ordering
fn cmp(&self, other: &LinkedAccountSpotifyInputType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for LinkedAccountSpotifyInputType
impl PartialEq for LinkedAccountSpotifyInputType
Source§fn eq(&self, other: &LinkedAccountSpotifyInputType) -> bool
fn eq(&self, other: &LinkedAccountSpotifyInputType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for LinkedAccountSpotifyInputType
impl PartialOrd for LinkedAccountSpotifyInputType
Source§impl TryFrom<&String> for LinkedAccountSpotifyInputType
impl TryFrom<&String> for LinkedAccountSpotifyInputType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for LinkedAccountSpotifyInputType
impl TryFrom<&str> for LinkedAccountSpotifyInputType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for LinkedAccountSpotifyInputType
impl TryFrom<String> for LinkedAccountSpotifyInputType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for LinkedAccountSpotifyInputType
impl Eq for LinkedAccountSpotifyInputType
impl StructuralPartialEq for LinkedAccountSpotifyInputType
Auto Trait Implementations§
impl Freeze for LinkedAccountSpotifyInputType
impl RefUnwindSafe for LinkedAccountSpotifyInputType
impl Send for LinkedAccountSpotifyInputType
impl Sync for LinkedAccountSpotifyInputType
impl Unpin for LinkedAccountSpotifyInputType
impl UnwindSafe for LinkedAccountSpotifyInputType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.