pub trait AsChannel {
    fn as_channel(&self) -> &Channel;
    fn as_channel_mut(&mut self) -> &mut Channel;
}

Required Methods

Implementors