pub trait Pile {
    fn cards(&self) -> &[Card];
    fn len(&self) -> usize;
    fn is_empty(&self) -> bool;
}

Required Methods

Implementors