generated from PlexSheep/rs-base
automatic cargo CI changes
This commit is contained in:
parent
b1bd520330
commit
8ee32759ee
|
@ -2,12 +2,12 @@ use crate::wlist::word::Word;
|
||||||
|
|
||||||
pub struct GuessResponse {
|
pub struct GuessResponse {
|
||||||
guess: Word,
|
guess: Word,
|
||||||
status: Vec<(char,Status)>,
|
status: Vec<(char, Status)>,
|
||||||
step: usize
|
step: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub enum Status {
|
pub enum Status {
|
||||||
None,
|
None,
|
||||||
Exists,
|
Exists,
|
||||||
Matched
|
Matched,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue