1use tokio::sync::oneshot; 2 3#[derive(Debug)] 4pub struct Message<R, S, E> { 5 pub req: R, 6 pub rsp_sender: oneshot::Sender<Result<S, E>>, 7 pub span: tracing::Span, 8}