pub type ReceiveResult<T> = Result<T, ReceiveError>;

Aliased Type§

enum ReceiveResult<T> {
    Ok(T),
    Err(ReceiveError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ReceiveError)

Contains the error value