Skip to main content

AuthFlowOperation

Struct AuthFlowOperation 

Source
pub struct AuthFlowOperation;

Implementations§

Source§

impl AuthFlowOperation

Source

pub const PROJECTION_CONFIG_FETCH: &'static str = "projection.config_fetch"

Source

pub const OIDC_AUTHORIZE: &'static str = "oidc.authorize"

Source

pub const OIDC_CALLBACK: &'static str = "oidc.callback"

Source

pub const OIDC_METADATA_REDEEM: &'static str = "oidc.metadata_redeem"

Source

pub const OIDC_TOKEN_REFRESH: &'static str = "oidc.token_refresh"

Source

pub const OIDC_USER_INFO: &'static str = "oidc.user_info"

Source

pub const FORWARD_AUTH_CHECK: &'static str = "forward_auth.check"

Source

pub const PROPAGATION_FORWARD: &'static str = "propagation.forward"

Source

pub const BASIC_AUTH_LOGIN: &'static str = "basic_auth.login"

Source

pub const BASIC_AUTH_LOGOUT: &'static str = "basic_auth.logout"

Source

pub const BASIC_AUTH_AUTHORIZE: &'static str = "basic_auth.authorize"

Source

pub const SESSION_LOGIN: &'static str = "session.login"

Source

pub const SESSION_LOGOUT: &'static str = "session.logout"

Source

pub const SESSION_USER_INFO: &'static str = "session.user_info"

Source

pub const DASHBOARD_AUTH_CHECK: &'static str = "dashboard_auth.check"

Source

pub const CREDS_MANAGE_GROUP_LIST: &'static str = "creds_manage.group.list"

Source

pub const CREDS_MANAGE_GROUP_GET: &'static str = "creds_manage.group.get"

Source

pub const CREDS_MANAGE_GROUP_CREATE: &'static str = "creds_manage.group.create"

Source

pub const CREDS_MANAGE_GROUP_UPDATE: &'static str = "creds_manage.group.update"

Source

pub const CREDS_MANAGE_GROUP_DELETE: &'static str = "creds_manage.group.delete"

Source

pub const CREDS_MANAGE_ENTRY_LIST: &'static str = "creds_manage.entry.list"

Source

pub const CREDS_MANAGE_ENTRY_GET: &'static str = "creds_manage.entry.get"

Source

pub const CREDS_MANAGE_ENTRY_CREATE_BASIC: &'static str = "creds_manage.entry.create_basic"

Source

pub const CREDS_MANAGE_ENTRY_CREATE_TOKEN: &'static str = "creds_manage.entry.create_token"

Source

pub const CREDS_MANAGE_ENTRY_UPDATE: &'static str = "creds_manage.entry.update"

Source

pub const CREDS_MANAGE_ENTRY_DELETE: &'static str = "creds_manage.entry.delete"

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> ErasedDestructor for T
where T: 'static,