pub enum GetArtistProfileArtError {
Status400(Default400ResponseBody),
Status404(Default404ResponseBody),
Status405(Default405ResponseBody),
Status406(Default406ResponseBody),
Status415(Default415ResponseBody),
Status429(Default429ResponseBody),
Status500(Default500ResponseBody),
Status503(Default503ResponseBody),
UnknownValue(Value),
}Expand description
struct for typed errors of method ArtistsApi::get_artist_profile_art
Variants§
Status400(Default400ResponseBody)
Status404(Default404ResponseBody)
Status405(Default405ResponseBody)
Status406(Default406ResponseBody)
Status415(Default415ResponseBody)
Status429(Default429ResponseBody)
Status500(Default500ResponseBody)
Status503(Default503ResponseBody)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for GetArtistProfileArtError
impl Clone for GetArtistProfileArtError
Source§fn clone(&self) -> GetArtistProfileArtError
fn clone(&self) -> GetArtistProfileArtError
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 GetArtistProfileArtError
impl Debug for GetArtistProfileArtError
Source§impl<'de> Deserialize<'de> for GetArtistProfileArtError
impl<'de> Deserialize<'de> for GetArtistProfileArtError
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
Auto Trait Implementations§
impl Freeze for GetArtistProfileArtError
impl RefUnwindSafe for GetArtistProfileArtError
impl Send for GetArtistProfileArtError
impl Sync for GetArtistProfileArtError
impl Unpin for GetArtistProfileArtError
impl UnwindSafe for GetArtistProfileArtError
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