Type Alias bluer::agent::ReqResult

source ·
pub type ReqResult<T> = Result<T, ReqError>;
Available on crate feature bluetoothd only.
Expand description

Result of a Bluetooth agent request to us.

Aliased Type§

enum ReqResult<T> {
    Ok(T),
    Err(ReqError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ReqError)

Contains the error value