Trait ipc_server::IpcServerCommand

source ·
pub trait IpcServerCommand: Serialize + for<'a> Deserialize<'a> + Debug {
    type Response: Serialize + for<'a> Deserialize<'a> + Debug;
    type Context<'a>;

    // Required method
    fn process<'a, 'b>(
        self,
        context: &'b mut Self::Context<'a>,
    ) -> Self::Response;
}

Required Associated Types§

Required Methods§

source

fn process<'a, 'b>(self, context: &'b mut Self::Context<'a>) -> Self::Response

Object Safety§

This trait is not object safe.

Implementors§