1use crate::api::PasswordStrength; 2 3mod zxcvbn; 4 5pub use self::zxcvbn::*; 6 7pub trait PasswordEstimator { 8 fn estimate_strength(password: &str, user_inputs: &[&str]) -> PasswordStrength; 9}