pub trait CommandSpecExt {
    fn execute(self) -> Result<(), CommandError>;
    fn scoped_spawn(self) -> Result<SpawnGuard, Error>;
}

Required Methods

Implementations on Foreign Types

Implementors