Type Alias ProgressSendResult

Source
pub type ProgressSendResult<T> = Result<T, ProgressSendError>;
Expand description

A result type for progress sending.

Aliased Type§

enum ProgressSendResult<T> {
    Ok(T),
    Err(ProgressSendError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ProgressSendError)

Contains the error value