Enum matrix_sdk_base::ruma::api::client::uiaa::UiaaResponse
pub enum UiaaResponse {
AuthResponse(UiaaInfo),
MatrixError(Error),
}
Available on crate feature
api
and (crate features client
or server
) 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§
§impl Clone for UiaaResponse
impl Clone for UiaaResponse
§fn clone(&self) -> UiaaResponse
fn clone(&self) -> UiaaResponse
Returns a copy 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 more§impl Debug for UiaaResponse
impl Debug for UiaaResponse
§impl Display for UiaaResponse
impl Display for UiaaResponse
§impl EndpointError for UiaaResponse
impl EndpointError for UiaaResponse
§fn from_http_response<T>(response: Response<T>) -> UiaaResponse
fn from_http_response<T>(response: Response<T>) -> UiaaResponse
§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)>
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()
§impl From<Error> for UiaaResponse
impl From<Error> for UiaaResponse
§fn from(error: Error) -> UiaaResponse
fn from(error: Error) -> UiaaResponse
Converts to this type from the input type.
§impl OutgoingResponse for UiaaResponse
impl OutgoingResponse for UiaaResponse
§fn try_into_http_response<T>(self) -> Result<Response<T>, IntoHttpError>where
T: Default + BufMut,
fn try_into_http_response<T>(self) -> Result<Response<T>, IntoHttpError>where
T: Default + BufMut,
Tries to convert this response into an
http::Response
. Read moreAuto Trait Implementations§
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