diff -r bfef9f34e438 -r 2d2eaba76d70 rust/parameter-lister/src/terminalmodule.rs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rust/parameter-lister/src/terminalmodule.rs Sat Oct 01 16:19:20 2016 +0200 @@ -0,0 +1,38 @@ +/** + * parameter-lister (Rust implementation) + * Copyright © 2016 Vojtěch Král + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +use outputmodule::*; + +pub static MOD_NAME: &'static str = "terminal"; + + +pub struct TerminalModule; + +impl TerminalModule { + pub fn new() -> TerminalModule { TerminalModule } +} + +impl OutputModule for TerminalModule { + fn process(&self, output: &mut Write, parameters: Vec) -> Result<(), String> { + for p in parameters { + if let Err(err) = write!(output, "{}\n", p) { + return Err(format!("{}", err)); + } + } + Ok(()) + } +}