pub enum PostGwApiV1AccountsAccountidTasksResponse {
Ok(Task200Response2),
BadRequest,
Unauthorized,
Forbidden,
UnsupportedMediaType,
InternalServerError,
Unknown,
}Expand description
Response types for post_gw_api_v1_accounts_accountid_tasks
Variants§
Ok(Task200Response2)
200: Task can be assigned from this api
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 PostGwApiV1AccountsAccountidTasksResponse
impl Clone for PostGwApiV1AccountsAccountidTasksResponse
Source§fn clone(&self) -> PostGwApiV1AccountsAccountidTasksResponse
fn clone(&self) -> PostGwApiV1AccountsAccountidTasksResponse
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 PostGwApiV1AccountsAccountidTasksResponse
impl RefUnwindSafe for PostGwApiV1AccountsAccountidTasksResponse
impl Send for PostGwApiV1AccountsAccountidTasksResponse
impl Sync for PostGwApiV1AccountsAccountidTasksResponse
impl Unpin for PostGwApiV1AccountsAccountidTasksResponse
impl UnsafeUnpin for PostGwApiV1AccountsAccountidTasksResponse
impl UnwindSafe for PostGwApiV1AccountsAccountidTasksResponse
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