1 2 3 4 5 6 7
use crate::common::http_sink::HttpSink; use crate::common::sink::SinkUntyped; pub(crate) trait Types: Send + Sync + 'static { type HttpSink: HttpSink; type SinkUntyped: SinkUntyped; }