pub type BroadcastSendResult<T> = Result<usize, SendError<T>>;
Expand description
Represents the result of a broadcast send operation, indicating either success with the number of receivers or an error.
Aliased Type§
pub enum BroadcastSendResult<T> {
Ok(usize),
Err(SendError<T>),
}