1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
use output_log::*;

pub type BoxBackend = Box <Backend>;

pub trait Backend: Send {

	fn update (
		& mut self,
		jobs: & [OutputLogInternal],
	);

}

// ex: noet ts=4 filetype=rust