pub trait RuntimeAdapter:
Send
+ Sync
+ 'static {
// Required method
fn runtime_name() -> &'static str
where Self: Sized;
}Expand description
Core runtime adapter trait - provides identity
Required Methods§
fn runtime_name() -> &'static strwhere
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".