ommui_broadcast 0.4.0

Broadcasting functionality using crossbeam-channels
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use snafu::{Backtrace, Snafu};

/// The errors.
#[derive(Debug, Snafu)]
#[snafu(visibility(pub(crate)))]
pub enum Error {
    /// A broadcaster which would be required for an action got dropped.
    #[snafu(display("broadcaster no longer exists"))]
    BroadcasterNoLongerExists {
        /// The captured backtrace.
        backtrace: Backtrace,
    },
}