pub enum GetMarketplaceParticipationsError {
Status400(GetMarketplaceParticipationsResponse),
Status403(GetMarketplaceParticipationsResponse),
Status404(GetMarketplaceParticipationsResponse),
Status413(GetMarketplaceParticipationsResponse),
Status415(GetMarketplaceParticipationsResponse),
Status429(GetMarketplaceParticipationsResponse),
Status500(GetMarketplaceParticipationsResponse),
Status503(GetMarketplaceParticipationsResponse),
UnknownValue(Value),
}Expand description
struct for typed errors of method get_marketplace_participations
Variants§
Status400(GetMarketplaceParticipationsResponse)
Status403(GetMarketplaceParticipationsResponse)
Status404(GetMarketplaceParticipationsResponse)
Status413(GetMarketplaceParticipationsResponse)
Status415(GetMarketplaceParticipationsResponse)
Status429(GetMarketplaceParticipationsResponse)
Status500(GetMarketplaceParticipationsResponse)
Status503(GetMarketplaceParticipationsResponse)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for GetMarketplaceParticipationsError
impl Clone for GetMarketplaceParticipationsError
Source§fn clone(&self) -> GetMarketplaceParticipationsError
fn clone(&self) -> GetMarketplaceParticipationsError
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 GetMarketplaceParticipationsError
impl<'de> Deserialize<'de> for GetMarketplaceParticipationsError
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 GetMarketplaceParticipationsError
impl RefUnwindSafe for GetMarketplaceParticipationsError
impl Send for GetMarketplaceParticipationsError
impl Sync for GetMarketplaceParticipationsError
impl Unpin for GetMarketplaceParticipationsError
impl UnsafeUnpin for GetMarketplaceParticipationsError
impl UnwindSafe for GetMarketplaceParticipationsError
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