pub struct ExternalAuthProviderTestResult {
pub provider: String,
pub issuer: Option<String>,
pub authorization_endpoint: Option<String>,
pub token_endpoint: Option<String>,
pub userinfo_endpoint: Option<String>,
pub jwks_key_count: Option<usize>,
pub checks: Vec<ExternalAuthProviderTestCheck>,
}Expand description
Provider health/test result returned to admin tooling.
Fields§
§provider: StringDisplay name of the tested provider driver.
issuer: Option<String>Effective issuer URL, when applicable.
Effective authorization endpoint, when applicable.
token_endpoint: Option<String>Effective token endpoint, when applicable.
userinfo_endpoint: Option<String>Effective userinfo endpoint, when applicable.
jwks_key_count: Option<usize>Number of discovered JWKS keys, when applicable.
checks: Vec<ExternalAuthProviderTestCheck>Individual test checks.
Trait Implementations§
Source§impl Clone for ExternalAuthProviderTestResult
impl Clone for ExternalAuthProviderTestResult
Source§fn clone(&self) -> ExternalAuthProviderTestResult
fn clone(&self) -> ExternalAuthProviderTestResult
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 moreSource§impl ComposeSchema for ExternalAuthProviderTestResult
impl ComposeSchema for ExternalAuthProviderTestResult
Auto Trait Implementations§
impl Freeze for ExternalAuthProviderTestResult
impl RefUnwindSafe for ExternalAuthProviderTestResult
impl Send for ExternalAuthProviderTestResult
impl Sync for ExternalAuthProviderTestResult
impl Unpin for ExternalAuthProviderTestResult
impl UnsafeUnpin for ExternalAuthProviderTestResult
impl UnwindSafe for ExternalAuthProviderTestResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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