pub enum GetExchangeRatesResponse {
Ok(RateResponse),
BadRequest,
Unauthorized,
InternalServerError,
ServiceUnavailable,
Unknown,
}Expand description
Response types for getExchangeRates
Variants§
Ok(RateResponse)
200: Successful requests return the currency exchange rate of the target currency value divided by the source currency.
BadRequest
400: Invalid input format or missing required fields
401: Invalid or expired access token
InternalServerError
500: internal server error, returned when incoming request cannot be processed. It can sometimes include subset of bad requests. For example, wrong accountId passed and it can only be detected later in handling request. Error contains reason of the problem.
503: service is unavailable. For example if request takes more than 10s due to some internal service unavailability, request aborted and this status returned
Unknown
default: Unknown response
Trait Implementations§
Source§impl Clone for GetExchangeRatesResponse
impl Clone for GetExchangeRatesResponse
Source§fn clone(&self) -> GetExchangeRatesResponse
fn clone(&self) -> GetExchangeRatesResponse
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 moreAuto Trait Implementations§
impl Freeze for GetExchangeRatesResponse
impl RefUnwindSafe for GetExchangeRatesResponse
impl Send for GetExchangeRatesResponse
impl Sync for GetExchangeRatesResponse
impl Unpin for GetExchangeRatesResponse
impl UnsafeUnpin for GetExchangeRatesResponse
impl UnwindSafe for GetExchangeRatesResponse
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