Skip to main content

ReadOnlyLogLocalServerHandler

Trait ReadOnlyLogLocalServerHandler 

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

A server handler for the ReadOnlyLog protocol.

See ReadOnlyLog for more details.

Required Methods§

Source

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

Get read-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> ReadOnlyLogLocalServerHandler<___T> for Local<___H>
where ___H: ReadOnlyLogServerHandler<___T>, ___T: Transport,

Source§

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

Implementors§