1 2 3 4 5 6
use credit_card::CreditCard; pub trait Tokenizer { fn new() -> Self; fn generate(&self, credit_card: &CreditCard) -> String; }