pub trait Server: Sync + Send + Clone + 'static {
    fn get_framebuffer_update<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = FramebufferUpdate> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Implementors