pub trait BcryptTrait {
// Required methods
fn encode(&self) -> Result<String, BcryptError>;
fn verify(&self) -> Result<bool, BcryptError>;
}pub trait BcryptTrait {
// Required methods
fn encode(&self) -> Result<String, BcryptError>;
fn verify(&self) -> Result<bool, BcryptError>;
}