Buildable

Trait Buildable 

Source
pub trait Buildable: Sized {
    // Required method
    fn build(this: RuntimeBuilder<Self>) -> Result<Runtime<Self>>;
}
Expand description

Buildable trait.

Required Methods§

Source

fn build(this: RuntimeBuilder<Self>) -> Result<Runtime<Self>>

Build the runtime.

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 Buildable for IoUringDriver

Available on Linux and crate feature iouring only.
Source§

impl Buildable for LegacyDriver

Available on crate feature legacy only.
Source§

impl<D> Buildable for TimeDriver<D>
where D: Buildable + Driver,