libits/
client.rs

1/*
2 * Software Name : libits-client
3 * SPDX-FileCopyrightText: Copyright (c) Orange SA
4 * SPDX-License-Identifier: MIT
5 *
6 * This software is distributed under the MIT license,
7 * see the "LICENSE.txt" file for more details or https://opensource.org/license/MIT/
8 *
9 * Authors: see CONTRIBUTORS.md
10 */
11
12/// Structures, functions and traits in this mod are made to create applications that analyze
13/// messages to either send new messages (e.g. creating DENM on odd behaviour from CAMs)
14/// or to create/store data (e.g. counting pedestrian, vehicles, etc. in a specific area)
15#[cfg(feature = "mobility")]
16pub mod application;
17pub mod bootstrap;
18pub mod configuration;
19pub mod logger;