pub trait Extractor {
type Output;
// Required method
fn get(self) -> Self::Output;
}Expand description
An Extractor indicates a specific direction to
process an [ProtocolEnvelope].
Extractor implementations are available in crate::protocol::extractors