pub enum CoreAuthDisplay {
Page,
Popup,
Touch,
Wap,
Extension(String),
}
Expand description
How the Authorization Server displays the authentication and consent user interface pages to the End-User.
These values are defined in Section 3.1.2.1.
Variants§
Page
The Authorization Server SHOULD display the authentication and consent UI consistent with a full User Agent page view. If the display parameter is not specified, this is the default display mode.
Popup
The Authorization Server SHOULD display the authentication and consent UI consistent with a popup User Agent window. The popup User Agent window should be of an appropriate size for a login-focused dialog and should not obscure the entire window that it is popping up over.
Touch
The Authorization Server SHOULD display the authentication and consent UI consistent with a device that leverages a touch interface.
Wap
The Authorization Server SHOULD display the authentication and consent UI consistent with a “feature phone” type display.
Extension(String)
An extension not defined by the OpenID Connect Core spec.
Trait Implementations§
Source§impl AsRef<str> for CoreAuthDisplay
impl AsRef<str> for CoreAuthDisplay
Source§impl Clone for CoreAuthDisplay
impl Clone for CoreAuthDisplay
Source§fn clone(&self) -> CoreAuthDisplay
fn clone(&self) -> CoreAuthDisplay
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for CoreAuthDisplay
impl Debug for CoreAuthDisplay
Source§impl<'de> Deserialize<'de> for CoreAuthDisplay
impl<'de> Deserialize<'de> for CoreAuthDisplay
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Source§impl Display for CoreAuthDisplay
impl Display for CoreAuthDisplay
Source§impl Hash for CoreAuthDisplay
impl Hash for CoreAuthDisplay
Source§impl PartialEq for CoreAuthDisplay
impl PartialEq for CoreAuthDisplay
Source§impl Serialize for CoreAuthDisplay
impl Serialize for CoreAuthDisplay
impl AuthDisplay for CoreAuthDisplay
impl Eq for CoreAuthDisplay
impl StructuralPartialEq for CoreAuthDisplay
Auto Trait Implementations§
impl Freeze for CoreAuthDisplay
impl RefUnwindSafe for CoreAuthDisplay
impl Send for CoreAuthDisplay
impl Sync for CoreAuthDisplay
impl Unpin for CoreAuthDisplay
impl UnwindSafe for CoreAuthDisplay
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more