rnetmon/src/output.rs

7 lines
115 B
Rust
Raw Normal View History

2019-01-30 15:26:05 +00:00
use crate::message::Message;
pub trait Output {
fn new() -> Self;
fn on_message(&self, message: &Message);
}