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>;
}
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>;
}