pub enum PostGwApiV1InstructionsCancelResponse {
Created(SynchronousInstructionResponse),
BadRequest,
Forbidden,
UnprocessableEntity,
InternalServerError,
Unknown,
}Expand description
Response types for post_gw_api_v1_instructions_cancel
Variants§
Created(SynchronousInstructionResponse)
201: Instruction successfully created and processed synchronously
BadRequest
400: Returns a Problem detail instance representing a bad request.
Forbidden
403: Returns a Problem detail instance representing a forbidden request.
UnprocessableEntity
422: Returns a Problem detail instance representing a business error.
InternalServerError
500: Returns a Problem detail instance representing an internal server error.
Unknown
default: Unknown response
Trait Implementations§
Source§impl Clone for PostGwApiV1InstructionsCancelResponse
impl Clone for PostGwApiV1InstructionsCancelResponse
Source§fn clone(&self) -> PostGwApiV1InstructionsCancelResponse
fn clone(&self) -> PostGwApiV1InstructionsCancelResponse
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 PostGwApiV1InstructionsCancelResponse
impl RefUnwindSafe for PostGwApiV1InstructionsCancelResponse
impl Send for PostGwApiV1InstructionsCancelResponse
impl Sync for PostGwApiV1InstructionsCancelResponse
impl Unpin for PostGwApiV1InstructionsCancelResponse
impl UnsafeUnpin for PostGwApiV1InstructionsCancelResponse
impl UnwindSafe for PostGwApiV1InstructionsCancelResponse
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