pub struct AuthMetricLabels {
pub provider: Option<String>,
pub issuer: Option<String>,
pub kid: Option<String>,
pub error_type: Option<String>,
}Expand description
Labels for auth metrics
Fields§
§provider: Option<String>Provider name (e.g., “keycloak”, “oidc_default”)
issuer: Option<String>Issuer URL
kid: Option<String>Key ID (for JWKS)
error_type: Option<String>Error type (for failures)
Implementations§
Trait Implementations§
Source§impl Clone for AuthMetricLabels
impl Clone for AuthMetricLabels
Source§fn clone(&self) -> AuthMetricLabels
fn clone(&self) -> AuthMetricLabels
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AuthMetricLabels
impl Debug for AuthMetricLabels
Source§impl Default for AuthMetricLabels
impl Default for AuthMetricLabels
Source§fn default() -> AuthMetricLabels
fn default() -> AuthMetricLabels
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AuthMetricLabels
impl RefUnwindSafe for AuthMetricLabels
impl Send for AuthMetricLabels
impl Sync for AuthMetricLabels
impl Unpin for AuthMetricLabels
impl UnwindSafe for AuthMetricLabels
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