pub enum SsoAuditEventKind {
ProviderRegistered,
ProviderUpdated,
ProviderDeleted,
DomainVerificationRequested,
DomainVerificationSucceeded,
DomainVerificationFailed,
DomainVerificationRevoked,
SamlReplayRejected,
SamlSignatureFailed,
SamlSloSessionDeleted,
}Expand description
SSO audit event kind emitted by provider, domain, SAML, and SLO flows.
Variants§
ProviderRegistered
A provider was registered.
ProviderUpdated
A provider was updated.
ProviderDeleted
A provider was deleted.
DomainVerificationRequested
A domain verification token was requested.
DomainVerificationSucceeded
Domain verification succeeded.
DomainVerificationFailed
Domain verification failed.
DomainVerificationRevoked
A previously verified provider domain was revoked by an update.
SamlReplayRejected
A replayed SAML assertion was rejected.
SamlSignatureFailed
SAML signature validation failed.
SamlSloSessionDeleted
A SAML SLO flow deleted a local session.
Trait Implementations§
Source§impl Clone for SsoAuditEventKind
impl Clone for SsoAuditEventKind
Source§fn clone(&self) -> SsoAuditEventKind
fn clone(&self) -> SsoAuditEventKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SsoAuditEventKind
Source§impl Debug for SsoAuditEventKind
impl Debug for SsoAuditEventKind
Source§impl<'de> Deserialize<'de> for SsoAuditEventKind
impl<'de> Deserialize<'de> for SsoAuditEventKind
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>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SsoAuditEventKind
Source§impl PartialEq for SsoAuditEventKind
impl PartialEq for SsoAuditEventKind
Source§fn eq(&self, other: &SsoAuditEventKind) -> bool
fn eq(&self, other: &SsoAuditEventKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SsoAuditEventKind
impl Serialize for SsoAuditEventKind
impl StructuralPartialEq for SsoAuditEventKind
Auto Trait Implementations§
impl Freeze for SsoAuditEventKind
impl RefUnwindSafe for SsoAuditEventKind
impl Send for SsoAuditEventKind
impl Sync for SsoAuditEventKind
impl Unpin for SsoAuditEventKind
impl UnsafeUnpin for SsoAuditEventKind
impl UnwindSafe for SsoAuditEventKind
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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
Compare self to
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>
Converts
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>
Converts
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