mirror of
https://github.com/actix/actix-web.git
synced 2024-11-20 00:21:07 +00:00
Make App::configure
take an FnOnce
(#825)
This commit is contained in:
parent
a17ff492a1
commit
a77b0b054a
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ where
|
|||
/// ```
|
||||
pub fn configure<F>(mut self, f: F) -> Self
|
||||
where
|
||||
F: Fn(&mut ServiceConfig),
|
||||
F: FnOnce(&mut ServiceConfig),
|
||||
{
|
||||
let mut cfg = ServiceConfig::new();
|
||||
f(&mut cfg);
|
||||
|
|
Loading…
Reference in a new issue