1 // Copyright 2022, The Android Open Source Project 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 //! This module provides the types of the parameters or returned data of the public interfaces. 16 17 pub(super) mod utils; 18 19 pub mod aliro_app_config_params; 20 pub mod app_config_params; 21 pub mod ccc_app_config_params; 22 pub mod ccc_started_app_config_params; 23 pub mod fira_app_config_params; 24 pub mod uci_packets; 25 26 // Re-export params from all of the sub-modules. 27 pub use aliro_app_config_params::*; 28 pub use app_config_params::*; 29 pub use ccc_app_config_params::*; 30 pub use ccc_started_app_config_params::*; 31 pub use fira_app_config_params::*; 32 pub use uci_packets::*; 33