pub enum PostGwApiV1SsoBrowserSessionsResponse {
Ok(CreateBrowserSessionResponse),
BadRequest,
Unauthorized,
Forbidden,
InternalServerError,
Unknown,
}Expand description
Response types for post_gw_api_v1_sso_browser_sessions
Variants§
Ok(CreateBrowserSessionResponse)
200: Create a Single Sign On (SSO) to access the IBKR hosted portal (White Branded).
BadRequest
400: Returns a Problem detail instance representing a bad request.
401: Returns a Problem detail instance representing an unauthorized request.
Forbidden
403: Returns a Problem detail instance representing a forbidden request.
InternalServerError
500: Returns a Problem detail instance representing an internal server error.
Unknown
default: Unknown response
Trait Implementations§
Source§impl Clone for PostGwApiV1SsoBrowserSessionsResponse
impl Clone for PostGwApiV1SsoBrowserSessionsResponse
Source§fn clone(&self) -> PostGwApiV1SsoBrowserSessionsResponse
fn clone(&self) -> PostGwApiV1SsoBrowserSessionsResponse
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 PostGwApiV1SsoBrowserSessionsResponse
impl RefUnwindSafe for PostGwApiV1SsoBrowserSessionsResponse
impl Send for PostGwApiV1SsoBrowserSessionsResponse
impl Sync for PostGwApiV1SsoBrowserSessionsResponse
impl Unpin for PostGwApiV1SsoBrowserSessionsResponse
impl UnsafeUnpin for PostGwApiV1SsoBrowserSessionsResponse
impl UnwindSafe for PostGwApiV1SsoBrowserSessionsResponse
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