pub trait SessionListenerProxyInterface: Send + Sync {
    // Required methods
    fn on_scenic_error(&self, error: &str) -> Result<(), Error>;
    fn on_scenic_event(&self, events: Vec<Event>) -> Result<(), Error>;
}

Required Methods§

source

fn on_scenic_error(&self, error: &str) -> Result<(), Error>

source

fn on_scenic_event(&self, events: Vec<Event>) -> Result<(), Error>

Implementors§