Skip to main content

MatchingTasks

Trait MatchingTasks 

pub trait MatchingTasks {
    // Required method
    fn get_all_task_ids() -> &'static [&'static str];

    // Provided method
    fn get_output_specs() -> &'static [TaskOutputSpec] { ... }
}

Required Methods§

fn get_all_task_ids() -> &'static [&'static str]

Provided Methods§

fn get_output_specs() -> &'static [TaskOutputSpec]

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§