BroadcastSendResult

Type Alias BroadcastSendResult 

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

Variants§

§1.0.0

Ok(usize)

Contains the success value

§1.0.0

Err(SendError<T>)

Contains the error value