pub enum GetGwApiV1AccountsAccountidTasksResponse {
Ok(Task200Response),
BadRequest,
Unauthorized,
Forbidden,
UnsupportedMediaType,
InternalServerError,
Unknown,
}Expand description
Response types for get_gw_api_v1_accounts_accountid_tasks
Variants§
Ok(Task200Response)
200: Query registration tasks assigned to account and pending tasks that are required for account approval
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 GetGwApiV1AccountsAccountidTasksResponse
impl Clone for GetGwApiV1AccountsAccountidTasksResponse
Source§fn clone(&self) -> GetGwApiV1AccountsAccountidTasksResponse
fn clone(&self) -> GetGwApiV1AccountsAccountidTasksResponse
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 GetGwApiV1AccountsAccountidTasksResponse
impl RefUnwindSafe for GetGwApiV1AccountsAccountidTasksResponse
impl Send for GetGwApiV1AccountsAccountidTasksResponse
impl Sync for GetGwApiV1AccountsAccountidTasksResponse
impl Unpin for GetGwApiV1AccountsAccountidTasksResponse
impl UnsafeUnpin for GetGwApiV1AccountsAccountidTasksResponse
impl UnwindSafe for GetGwApiV1AccountsAccountidTasksResponse
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