Enum ruma_client_api::uiaa::UiaaResponse
source · pub enum UiaaResponse {
AuthResponse(UiaaInfo),
MatrixError(Error),
}
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 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 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§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()
source§impl From<Error> for UiaaResponse
impl From<Error> for UiaaResponse
source§fn from(error: MatrixError) -> Self
fn from(error: MatrixError) -> Self
Converts to this type from the input type.
source§impl OutgoingResponse for UiaaResponse
impl OutgoingResponse for UiaaResponse
source§fn try_into_http_response<T: Default + BufMut>(
self,
) -> Result<Response<T>, IntoHttpError>
fn try_into_http_response<T: Default + BufMut>( 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)