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