Skip to main content

WriteOnlyLogServerHandler

Trait WriteOnlyLogServerHandler 

Source
pub trait WriteOnlyLogServerHandler<___T: Transport = Channel> {
    // Required method
    fn get(
        &mut self,
        responder: Responder<Get, ___T>,
    ) -> impl Future<Output = ()> + Send;
}
Expand description

A server handler for the WriteOnlyLog protocol.

See WriteOnlyLog for more details.

Required Methods§

Source

fn get( &mut self, responder: Responder<Get, ___T>, ) -> impl Future<Output = ()> + Send

Get write-only handle to the kernel log.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§