pub trait PasswordProvider:
Send
+ Sync
+ 'static {
// Required method
fn get_password(&self) -> Option<SecretString>;
}pub trait PasswordProvider:
Send
+ Sync
+ 'static {
// Required method
fn get_password(&self) -> Option<SecretString>;
}