pub enum UiaaResponse {
    AuthResponse(UiaaInfo),
    MatrixError(Error),
}Available on crate feature 
api and (crate features client-api-c or client-api-s) only.Expand description
Contains either a User-Interactive Authentication API response body or a Matrix error.
Variants§
AuthResponse(UiaaInfo)
User-Interactive Authentication API response
MatrixError(Error)
Matrix error response
Trait Implementations§
Source§impl Clone for UiaaResponse
 
impl Clone for UiaaResponse
Source§fn clone(&self) -> UiaaResponse
 
fn clone(&self) -> UiaaResponse
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 moreSource§impl Debug for UiaaResponse
 
impl Debug for UiaaResponse
Source§impl Display for UiaaResponse
 
impl Display for UiaaResponse
Source§impl EndpointError for UiaaResponse
 
impl EndpointError for UiaaResponse
Source§fn from_http_response<T>(response: Response<T>) -> UiaaResponse
 
fn from_http_response<T>(response: Response<T>) -> UiaaResponse
Source§impl Error for UiaaResponse
 
impl Error for UiaaResponse
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
 
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for UiaaResponse
 
impl From<Error> for UiaaResponse
Source§fn from(error: Error) -> UiaaResponse
 
fn from(error: Error) -> UiaaResponse
Converts to this type from the input type.
Source§impl OutgoingResponse for UiaaResponse
 
impl OutgoingResponse for UiaaResponse
Source§fn try_into_http_response<T>(self) -> Result<Response<T>, IntoHttpError>
 
fn try_into_http_response<T>(self) -> Result<Response<T>, IntoHttpError>
Tries to convert this response into an 
http::Response. Read moreAuto Trait Implementations§
impl !Freeze for UiaaResponse
impl !RefUnwindSafe for UiaaResponse
impl Send for UiaaResponse
impl Sync for UiaaResponse
impl Unpin for UiaaResponse
impl !UnwindSafe for UiaaResponse
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