Trait Infrastructure

Source
pub trait Infrastructure {
    // Required method
    fn start<I>(&self, _: Context, _: I) -> Result<String, TaskError>
       where I: IntoIterator,
             I::Item: AsRef<OsStr>;
}

Required Methods§

Source

fn start<I>(&self, _: Context, _: I) -> Result<String, TaskError>
where I: IntoIterator, I::Item: AsRef<OsStr>,

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§