pub trait Adapter {
// Required methods
fn name(&self) -> &'static str;
fn run(&self) -> Result<()>;
}Expand description
One trait, three impls (shim, hook, MCP). Each normalizes a source and runs.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".