pub trait GetChannelInfo {
    // Required methods
    fn get_channel_status(id: ParaId) -> ChannelStatus;
    fn get_channel_max(id: ParaId) -> Option<usize>;
}

Required Methods§

Implementors§