clippy::redundant_field_names

This commit is contained in:
Maan2003 2021-06-13 09:40:22 +05:30
parent b857a5dcf0
commit aabd41cafc
No known key found for this signature in database
GPG key ID: E9AF024BA63C70ED
6 changed files with 7 additions and 7 deletions

View file

@ -91,7 +91,7 @@ enum State {
impl FormatStrParser {
pub(crate) fn new(input: String) -> Self {
Self {
input: input,
input,
output: String::new(),
extracted_expressions: Vec::new(),
state: State::NotExpr,