chore: remove clippy::missing_debug_implementations (#10491)

This commit is contained in:
nk_ysg
2024-08-24 15:37:25 +08:00
committed by GitHub
parent e52ca0ec57
commit adf7fb2b3b

View File

@ -6,8 +6,7 @@ use tracing::error;
/// Implements JWT validation logics and integrates
/// to an Http [`AuthLayer`][crate::AuthLayer]
/// by implementing the [`AuthValidator`] trait.
#[derive(Clone)]
#[allow(missing_debug_implementations)]
#[derive(Debug, Clone)]
pub struct JwtAuthValidator {
secret: JwtSecret,
}