pub type BluetoothResult<T> = Result<T, BluetoothError>;

Aliased Type§

enum BluetoothResult<T> {
    Ok(T),
    Err(BluetoothError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(BluetoothError)

Contains the error value