hci_emulator_client/
types.rs1use fidl_fuchsia_hardware_bluetooth as fidl;
6
7#[derive(Clone, Debug, Default, PartialEq)]
8pub struct LegacyAdvertisingState {
9 pub enabled: bool,
10 pub type_: Option<fidl::LegacyAdvertisingType>,
11 pub address_type: Option<fidl_fuchsia_bluetooth::AddressType>,
13 pub interval_min: Option<u16>,
14 pub interval_max: Option<u16>,
15 pub advertising_data: Option<fidl::AdvertisingData>,
16 pub scan_response: Option<fidl::AdvertisingData>,
17}
18
19impl From<fidl::LegacyAdvertisingState> for LegacyAdvertisingState {
20 fn from(src: fidl::LegacyAdvertisingState) -> LegacyAdvertisingState {
21 LegacyAdvertisingState {
22 enabled: src.enabled.unwrap_or(false),
23 type_: src.type_,
24 address_type: src.address_type,
25 interval_min: src.interval_min,
26 interval_max: src.interval_max,
27 advertising_data: src.advertising_data,
28 scan_response: src.scan_response,
29 }
30 }
31}
32
33#[derive(Clone, Debug, Default, PartialEq)]
34pub struct ControllerParameters {
35 pub local_name: Option<String>,
36 pub device_class: Option<fidl_fuchsia_bluetooth::DeviceClass>,
37}
38
39impl From<fidl::ControllerParameters> for ControllerParameters {
40 fn from(src: fidl::ControllerParameters) -> ControllerParameters {
41 ControllerParameters { local_name: src.local_name, device_class: src.device_class }
42 }
43}