[][src]Trait sunrise_libuser::time::StaticService

pub trait StaticService {
    fn get_timezone_service(
        &mut self,
        manager: WorkQueue<'static>
    ) -> Result<TimeZoneServiceProxy, Error>; fn dispatch<'a>(
        &'a mut self,
        manager: WorkQueue<'static>,
        cmdid: u32,
        buf: &'a mut [u8]
    ) -> FutureObj<Result<(), Error>> { ... } }

Entry point interface

Required methods

fn get_timezone_service(
    &mut self,
    manager: WorkQueue<'static>
) -> Result<TimeZoneServiceProxy, Error>

Get the TimeZone service object

Loading content...

Provided methods

fn dispatch<'a>(
    &'a mut self,
    manager: WorkQueue<'static>,
    cmdid: u32,
    buf: &'a mut [u8]
) -> FutureObj<Result<(), Error>>

Handle an incoming IPC request.

Loading content...

Implementors

Loading content...