Skip to main content

AlertSinkResult

Type Alias AlertSinkResult 

pub type AlertSinkResult<T> = Result<T, AlertSinkError>;
Expand description

Result type for alert sink operations.

Aliased Type§

pub enum AlertSinkResult<T> {
    Ok(T),
    Err(AlertSinkError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AlertSinkError)

Contains the error value