pub enum GetGwApiV1ParticipatingBanksResponse {
Ok(GetParticipatingListResponse),
BadRequest,
InternalServerError,
Unknown,
}Expand description
Response types for get_gw_api_v1_participating_banks
Variants§
Ok(GetParticipatingListResponse)
200: Returns the list of participating banks.
BadRequest
400: Returns a Problem detail instance representing a not found request.
InternalServerError
500: Unable to process request due to an Internal Error. Please try again later.
Unknown
default: Unknown response
Trait Implementations§
Source§impl Clone for GetGwApiV1ParticipatingBanksResponse
impl Clone for GetGwApiV1ParticipatingBanksResponse
Source§fn clone(&self) -> GetGwApiV1ParticipatingBanksResponse
fn clone(&self) -> GetGwApiV1ParticipatingBanksResponse
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 GetGwApiV1ParticipatingBanksResponse
impl RefUnwindSafe for GetGwApiV1ParticipatingBanksResponse
impl Send for GetGwApiV1ParticipatingBanksResponse
impl Sync for GetGwApiV1ParticipatingBanksResponse
impl Unpin for GetGwApiV1ParticipatingBanksResponse
impl UnsafeUnpin for GetGwApiV1ParticipatingBanksResponse
impl UnwindSafe for GetGwApiV1ParticipatingBanksResponse
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