1use crate::IMessageChannel; 2 3#[derive(Clone, Debug)] 4pub enum ExampleMessageChannel { 5 Output, 6} 7 8impl IMessageChannel for ExampleMessageChannel {}