Skip to main content

WriteOnlyLogLocalServerHandler

Trait WriteOnlyLogLocalServerHandler 

Source
pub trait WriteOnlyLogLocalServerHandler<___T: Transport = Channel> {
    // Required method
    fn get(
        &mut self,
        responder: Responder<Get, ___T>,
    ) -> impl Future<Output = ()>;
}
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 = ()>

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".

Implementations on Foreign Types§

Source§

impl<___H, ___T> WriteOnlyLogLocalServerHandler<___T> for Local<___H>
where ___H: WriteOnlyLogServerHandler<___T>, ___T: Transport,

Source§

async fn get(&mut self, responder: Responder<Get, ___T>)

Implementors§