pub trait RuntimeAdapterPlugin<S: FlowState>: Send + Sync {
// Required method
fn descriptor(&self) -> PluginDescriptor;
// Provided method
fn id(&self) -> &str { ... }
}Expand description
Runtime adapter plugin — binds FlowEngine to return richer API.