pub trait RuntimeAdapter: Send + Sync + 'static { // Required method fn runtime_name() -> &'static str where Self: Sized; }
Core runtime adapter trait - provides identity