pub enum OauthRedirectResponse {
Text(String),
Html(String),
}Expand description
The response for OAuth redirect.
Variants§
Implementations§
Trait Implementations§
Source§impl Debug for OauthRedirectResponse
impl Debug for OauthRedirectResponse
Source§impl IntoResponse for OauthRedirectResponse
impl IntoResponse for OauthRedirectResponse
Source§fn into_response(self) -> Response<Body>
fn into_response(self) -> Response<Body>
Create a response.
Auto Trait Implementations§
impl Freeze for OauthRedirectResponse
impl RefUnwindSafe for OauthRedirectResponse
impl Send for OauthRedirectResponse
impl Sync for OauthRedirectResponse
impl Unpin for OauthRedirectResponse
impl UnsafeUnpin for OauthRedirectResponse
impl UnwindSafe for OauthRedirectResponse
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