pub trait RlmTurnInputExt {
// Required methods
fn rlm_project(
self,
bindings: RlmProjectedBindings,
) -> Result<Self, ProjectedBindingError>
where Self: Sized;
fn rlm_project_tool_results(
self,
projector: RlmToolResultProjector,
) -> Result<Self, ProjectedBindingError>
where Self: Sized;
}Required Methods§
fn rlm_project(
self,
bindings: RlmProjectedBindings,
) -> Result<Self, ProjectedBindingError>where
Self: Sized,
fn rlm_project_tool_results(
self,
projector: RlmToolResultProjector,
) -> Result<Self, ProjectedBindingError>where
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".