EventSendResult

Type Alias EventSendResult 

Source
pub type EventSendResult<T> = Result<T, EventSendError>;
Expand description

Type alias for event send operations

Aliased Type§

pub enum EventSendResult<T> {
    Ok(T),
    Err(EventSendError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(EventSendError)

Contains the error value