pub trait CardSequence {
    fn accepts(current_card: Card, next_card: Card) -> bool;
}

Required Methods

Implementors