BroadcastMapSendResult

Type Alias BroadcastMapSendResult 

Source
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>),
}

Variants§

§1.0.0

Ok(Option<usize>)

Contains the success value

§1.0.0

Err(SendError<T>)

Contains the error value