default impl for fork method

This commit is contained in:
Nikolay Kim 2018-08-22 11:12:06 -07:00
parent 29490e6c13
commit 26f472649a
1 changed files with 3 additions and 1 deletions

View File

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