pub trait Host {
// Required methods
fn create_session(&mut self, service: String) -> Result<Option<String>>;
fn terminate_session(&mut self, session: String) -> Result<()>;
}Required Methods§
Sourcefn create_session(&mut self, service: String) -> Result<Option<String>>
fn create_session(&mut self, service: String) -> Result<Option<String>>
start session, this will start new operator session
Sourcefn terminate_session(&mut self, session: String) -> Result<()>
fn terminate_session(&mut self, session: String) -> Result<()>
terminate session, this will terminate operator session