Enum openidconnect::core::CoreAuthDisplay
source · 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§fn clone_from(&mut self, source: &Self)
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§fn eq(&self, other: &CoreAuthDisplay) -> bool
fn eq(&self, other: &CoreAuthDisplay) -> bool
self and other values to be equal, and is used
by ==.source§impl Serialize for CoreAuthDisplay
impl Serialize for CoreAuthDisplay
impl AuthDisplay for CoreAuthDisplay
impl Eq for CoreAuthDisplay
impl StructuralEq for CoreAuthDisplay
impl StructuralPartialEq for CoreAuthDisplay
Auto Trait Implementations§
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.