pub trait ReplyState<F>where
    F: Framing,
{ type RequestContext; fn send_reply(&mut self, reply: FramingEncodedFinal<F>); fn send_stream_reply(
        &mut self,
        response: FramingEncodedFinal<F>,
        stream: Option<BoxStream<'static, SerializedStreamElement<FramingEncodedFinal<F>>>>,
        protocol_id: ProtocolID
    ) -> Result<()>; fn set_interaction_processor(
        &mut self,
        _processor: Arc<dyn ThriftService<F, Handler = (), RequestContext = Self::RequestContext, ReplyState = Self> + Send + 'static>
    ) -> Result<()> { ... } }

Required Associated Types§

Required Methods§

Provided Methods§

Implementors§