pub enum GetAlbumOwnersError {
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 AlbumsApi::get_album_owners
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 GetAlbumOwnersError
impl Clone for GetAlbumOwnersError
Source§fn clone(&self) -> GetAlbumOwnersError
fn clone(&self) -> GetAlbumOwnersError
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 GetAlbumOwnersError
impl Debug for GetAlbumOwnersError
Source§impl<'de> Deserialize<'de> for GetAlbumOwnersError
impl<'de> Deserialize<'de> for GetAlbumOwnersError
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 GetAlbumOwnersError
impl RefUnwindSafe for GetAlbumOwnersError
impl Send for GetAlbumOwnersError
impl Sync for GetAlbumOwnersError
impl Unpin for GetAlbumOwnersError
impl UnwindSafe for GetAlbumOwnersError
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