use super::protocol_model::{ClientMessages, ServerMessages}; use std::future::Future; use futures::Stream; // TODO 2022-09-09 when Rust allows, those complex Stream types might be moved here as types or traits // pub type ProcessorStreamType = Stream)>> + Send + Sync; // pub trait ProcessorStreamType: Stream)>> + Send + Sync {} // -- currently, we're not allowed to use "impl" in user defined types