1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-23 19:51:06 +01:00

default impl for fork method

This commit is contained in:
Nikolay Kim 2018-08-22 11:12:06 -07:00
parent 29490e6c13
commit 26f472649a

View File

@ -2,7 +2,9 @@
use std::sync::{atomic::AtomicUsize, Arc};
pub trait Config: Send + Clone + Default + 'static {
fn fork(&self) -> Self;
fn fork(&self) -> Self {
self.clone()
}
}
#[derive(Clone, Default)]