pub enum SetAssetPriceError {
Status403(AssetPriceForbiddenErrorResponse),
Status404(AssetPriceNotFoundErrorResponse),
DefaultResponse(ErrorSchema),
UnknownValue(Value),
}
Expand description
struct for typed errors of method [set_asset_price
]
Variants§
Status403(AssetPriceForbiddenErrorResponse)
Status404(AssetPriceNotFoundErrorResponse)
DefaultResponse(ErrorSchema)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for SetAssetPriceError
impl Clone for SetAssetPriceError
Source§fn clone(&self) -> SetAssetPriceError
fn clone(&self) -> SetAssetPriceError
Returns a copy 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 SetAssetPriceError
impl Debug for SetAssetPriceError
Source§impl<'de> Deserialize<'de> for SetAssetPriceError
impl<'de> Deserialize<'de> for SetAssetPriceError
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 SetAssetPriceError
impl RefUnwindSafe for SetAssetPriceError
impl Send for SetAssetPriceError
impl Sync for SetAssetPriceError
impl Unpin for SetAssetPriceError
impl UnwindSafe for SetAssetPriceError
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