summaryrefslogtreecommitdiffstats
path: root/src/program.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/program.rs')
-rw-r--r--src/program.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/program.rs b/src/program.rs
index c423f6d0..7a366585 100644
--- a/src/program.rs
+++ b/src/program.rs
@@ -166,7 +166,10 @@ impl<P: Definition> Program<P> {
/// Runs the underlying [`Application`] of the [`Program`] with a
/// closure that creates the initial state.
- pub fn run_with(self, initialize: impl Fn() -> P::State + Clone) -> Result
+ pub fn run_with(
+ self,
+ initialize: impl Fn() -> P::State + Clone + 'static,
+ ) -> Result
where
Self: 'static,
{