pub trait StagedContext {
// Required methods
fn retire(self, result: Result<ExecuteResponse, AdapterError>);
fn session(&self) -> Option<&Session>;
}Required Methods§
fn retire(self, result: Result<ExecuteResponse, AdapterError>)
fn session(&self) -> Option<&Session>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".