pub trait RequestSerializer: Send + Sync + Debug {
    // Required method
    fn serialize_input(&self, input: Input) -> Result<HttpRequest, BoxError>;
}

Required Methods§

Implementors§