pub struct Clues {
pub across: HashMap<u16, String>,
pub down: HashMap<u16, String>,
}Expand description
Clues organized by direction and number.
Clue numbers correspond to the starting squares in the grid. The ordering follows standard crossword conventions.
Fields§
§across: HashMap<u16, String>Across clues mapped by clue number
down: HashMap<u16, String>Down clues mapped by clue number
Trait Implementations§
impl StructuralPartialEq for Clues
Auto Trait Implementations§
impl Freeze for Clues
impl RefUnwindSafe for Clues
impl Send for Clues
impl Sync for Clues
impl Unpin for Clues
impl UnwindSafe for Clues
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more