pub enum GetAccountOwnersResponse {
Ok(SignatureAndOwners),
BadRequest,
Unauthorized,
ServiceUnavailable,
Unknown,
}Expand description
Response types for getAccountOwners
Variants§
Ok(SignatureAndOwners)
200: An object containing valid accounts and the account properties regarding trading access. This endpoint is also used to confirm account validation.
BadRequest
400: bad request; accountId is empty
401: Invalid or expired access token
503: service is unavailable. For example if request takes more than 10s due to some internal service unavailability, request aborted and this status returned
Unknown
default: Unknown response
Trait Implementations§
Source§impl Clone for GetAccountOwnersResponse
impl Clone for GetAccountOwnersResponse
Source§fn clone(&self) -> GetAccountOwnersResponse
fn clone(&self) -> GetAccountOwnersResponse
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 GetAccountOwnersResponse
impl RefUnwindSafe for GetAccountOwnersResponse
impl Send for GetAccountOwnersResponse
impl Sync for GetAccountOwnersResponse
impl Unpin for GetAccountOwnersResponse
impl UnsafeUnpin for GetAccountOwnersResponse
impl UnwindSafe for GetAccountOwnersResponse
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