Runtime

Trait Runtime 

Source
pub trait Runtime:
    Default
    + 'static
    + Send
    + Sync { }
Expand description

A trait that all script runtimes must implement.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> Runtime for T
where T: Default + 'static + Send + Sync,