pub type BroadcastMapSendResult<T> = Result<Option<usize>, SendError<T>>;
pub enum BroadcastMapSendResult<T> { Ok(Option<usize>), Err(SendError<T>), }
Contains the success value
Contains the error value