blob: 4a38e9ee1bab475a10f244308842dd269d0de23a [file] [log] [blame]
/// Bluetooth experimental feature API
pub trait IBluetoothExperimental {
/// Set LL privacy status
fn set_ll_privacy(&mut self, enabled: bool) -> bool;
/// Set devcoredump status
fn set_devcoredump(&mut self, enabled: bool) -> bool;
}