1
0
mirror of https://github.com/actix/actix-website synced 2024-11-23 16:31:08 +01:00

Clippy fixes.

This commit is contained in:
Cameron Dershem 2019-06-22 09:18:08 -04:00
parent 339ac43814
commit 4f57ce2fdb
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ fn index(_req: HttpRequest) -> RegisterResult {
// <- variant B
Box::new(ok(HttpResponse::Ok()
.content_type("text/html")
.body(format!("Hello!")))),
.body("Hello!".to_string()))),
)
}
}

View File

@ -9,12 +9,12 @@ struct Event {
tags: Vec<String>,
}
fn store_in_db(timestamp: f64, kind: &String, tags: &Vec<String>) -> Event {
fn store_in_db(timestamp: f64, kind: &str, tags: &[String]) -> Event {
// store item in db and get new_event
// use id to lookup item
Event {
id: Some(1),
timestamp: timestamp,
timestamp,
kind: kind.to_string(),
tags: tags.to_vec(),
}