pub trait ResponseCommandParameter {
    fn before_response_write(
        var: &Self,
        ctx: &mut ServerContext<'_>
    ) -> Result<()>; fn after_response_write(
        var: &Self,
        ctx: &mut ServerContext<'_>
    ) -> Result<()>; }

Required Methods

Implementors