pub struct OAuthTemplateContext<'a> {
pub host: Option<&'a str>,
pub error: Option<&'a str>,
pub error_description: Option<&'a str>,
}Expand description
Values displayed by the browser OAuth callback.
Fields§
§host: Option<&'a str>Provider host linked from a successful callback.
error: Option<&'a str>OAuth error identifier displayed by an unsuccessful callback.
error_description: Option<&'a str>OAuth error detail displayed by an unsuccessful callback.
Auto Trait Implementations§
impl<'a> Freeze for OAuthTemplateContext<'a>
impl<'a> RefUnwindSafe for OAuthTemplateContext<'a>
impl<'a> Send for OAuthTemplateContext<'a>
impl<'a> Sync for OAuthTemplateContext<'a>
impl<'a> Unpin for OAuthTemplateContext<'a>
impl<'a> UnsafeUnpin for OAuthTemplateContext<'a>
impl<'a> UnwindSafe for OAuthTemplateContext<'a>
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