clippy pass

This commit is contained in:
Nick Pegg 2025-07-09 12:40:15 -07:00
parent 69a4239f90
commit 48327efe20
3 changed files with 13 additions and 9 deletions

View file

@ -91,6 +91,12 @@ impl Hand {
}
}
impl Default for Hand {
fn default() -> Self {
Hand::new()
}
}
impl From<Vec<Card>> for Hand {
fn from(cards: Vec<Card>) -> Self {
Self { cards }