Trait rustic_rs::Runnable

source ·
pub trait Runnable {
    // Required method
    fn run(&self);
}
Expand description

Abscissa core prelude Runnable is a common trait for things which can be run without any arguments.

Its primary intended purpose is for use in conjunction with Command.

Required Methods§

source

fn run(&self)

Run this Runnable

Implementations on Foreign Types§

source§

impl Runnable for Box<dyn Fn()>

source§

fn run(&self)

Implementors§