Trait std::routine::Runnable

pub trait Runnable {
    fn run(~self);
}

A routine that takes no arguments and returns nothing.

Required Methods

fn run(~self)

The entry point for the routine.

Implementors