Remove nonsensical DebugSecret implementation
This commit is contained in:
parent
a5a55ad69a
commit
8ce85262be
1 changed files with 1 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
use secrecy::{DebugSecret, SecretString};
|
use secrecy::SecretString;
|
||||||
use tracing::instrument;
|
use tracing::instrument;
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
|
@ -6,7 +6,6 @@ pub struct Password(pub SecretString);
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct UserToken(pub SecretString);
|
pub struct UserToken(pub SecretString);
|
||||||
impl DebugSecret for UserToken {}
|
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Authenticator {
|
pub struct Authenticator {
|
||||||
|
|
Loading…
Reference in a new issue