pub trait TeaclaveRuntime {
    fn open_input(&self, identifier: &str) -> Result<Box<dyn Read>>;
    fn create_output(&self, identifier: &str) -> Result<Box<dyn Write>>;
}

Required Methods

Implementors