pub trait StreamResolver<TCtx, TMarker> {
// Required methods
fn exec(&self, ctx: TCtx, input: Value) -> Result<LayerResult, ExecError>;
fn typedef(defs: &mut TypeMap) -> ProcedureDataType;
}
Required Methods§
fn exec(&self, ctx: TCtx, input: Value) -> Result<LayerResult, ExecError>
fn typedef(defs: &mut TypeMap) -> ProcedureDataType
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.