pub enum GetBrokerageStatusResponse {
Ok(BrokerageSessionStatus),
Unauthorized,
Unknown,
}Expand description
Response types for getBrokerageStatus
Variants§
Ok(BrokerageSessionStatus)
200: Detailed status of the Brokerage session
401: Invalid or expired access token
Unknown
default: Unknown response
Trait Implementations§
Source§impl Clone for GetBrokerageStatusResponse
impl Clone for GetBrokerageStatusResponse
Source§fn clone(&self) -> GetBrokerageStatusResponse
fn clone(&self) -> GetBrokerageStatusResponse
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 GetBrokerageStatusResponse
impl RefUnwindSafe for GetBrokerageStatusResponse
impl Send for GetBrokerageStatusResponse
impl Sync for GetBrokerageStatusResponse
impl Unpin for GetBrokerageStatusResponse
impl UnsafeUnpin for GetBrokerageStatusResponse
impl UnwindSafe for GetBrokerageStatusResponse
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