Skip to main content

LiveRuntime

Trait LiveRuntime 

Source
pub trait LiveRuntime: IRuntime<Shape = &'static Shape, Heap: IHeap<&'static Shape, Ptr = *mut u8>> { }
Expand description

Marker trait for runtimes that use real facet shapes and raw pointers.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> LiveRuntime for T
where T: IRuntime<Shape = &'static Shape, Heap: IHeap<&'static Shape, Ptr = *mut u8>>,

Available on non-creusot only.