This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use std::collections::HashSet as Set; | |
| use std::marker::PhantomData; | |
| // Marker traits for states | |
| pub trait KeyState {} | |
| pub struct InvalidState; | |
| impl KeyState for InvalidState {} | |
| pub trait UsableState {} |
OlderNewer