pub trait StringCallback {
    // Required method
    fn call(&self, message: String) -> Result<(), String>;
}

Required Methods§

source

fn call(&self, message: String) -> Result<(), String>

Implementors§