pub enum GetGwApiV1AccountsAccountidStatusResponse {
Ok(AccountStatusResponse),
BadRequest,
Unauthorized,
Forbidden,
UnsupportedMediaType,
InternalServerError,
Unknown,
}Expand description
Response types for get_gw_api_v1_accounts_accountid_status
Variants§
Ok(AccountStatusResponse)
200: Query status of account by accountId.
BadRequest
400: Returns error description representing bad request
401: Returns error description representing access issue
Forbidden
403: Returns error description representing access issue
UnsupportedMediaType
415: Unsupported Media Type
InternalServerError
500: Returns error description representing internal server error
Unknown
default: Unknown response
Trait Implementations§
Source§impl Clone for GetGwApiV1AccountsAccountidStatusResponse
impl Clone for GetGwApiV1AccountsAccountidStatusResponse
Source§fn clone(&self) -> GetGwApiV1AccountsAccountidStatusResponse
fn clone(&self) -> GetGwApiV1AccountsAccountidStatusResponse
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 GetGwApiV1AccountsAccountidStatusResponse
impl RefUnwindSafe for GetGwApiV1AccountsAccountidStatusResponse
impl Send for GetGwApiV1AccountsAccountidStatusResponse
impl Sync for GetGwApiV1AccountsAccountidStatusResponse
impl Unpin for GetGwApiV1AccountsAccountidStatusResponse
impl UnsafeUnpin for GetGwApiV1AccountsAccountidStatusResponse
impl UnwindSafe for GetGwApiV1AccountsAccountidStatusResponse
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