pub enum GetSessionValidationResponse {
Ok(SsoValidateResponse),
Unauthorized,
Unknown,
}Expand description
Response types for getSessionValidation
Variants§
Ok(SsoValidateResponse)
200: An array of objects detailing contract information.
401: Invalid or expired access token
Unknown
default: Unknown response
Trait Implementations§
Source§impl Clone for GetSessionValidationResponse
impl Clone for GetSessionValidationResponse
Source§fn clone(&self) -> GetSessionValidationResponse
fn clone(&self) -> GetSessionValidationResponse
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 GetSessionValidationResponse
impl RefUnwindSafe for GetSessionValidationResponse
impl Send for GetSessionValidationResponse
impl Sync for GetSessionValidationResponse
impl Unpin for GetSessionValidationResponse
impl UnsafeUnpin for GetSessionValidationResponse
impl UnwindSafe for GetSessionValidationResponse
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