fpr_cli

Trait Run

Source
pub trait Run<C> {
    type R;

    // Required method
    fn run(c: &C, a: Self) -> Result<Self::R, String>;
}

Required Associated Types§

Source

type R

Required Methods§

Source

fn run(c: &C, a: Self) -> Result<Self::R, String>

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§