pub trait NetworkData<T>: Debug + Send {
    fn take_data(&mut self) -> Option<T>;
}

Required Methods§

Implementors§