libits_client/reception/mod.rs
1// Software Name: its-client
2// SPDX-FileCopyrightText: Copyright (c) 2016-2022 Orange
3// SPDX-License-Identifier: MIT License
4//
5// This software is distributed under the MIT license, see LICENSE.txt file for more details.
6//
7// Author: Frédéric GARDES <frederic.gardes@orange.com> et al.
8// Software description: This Intelligent Transportation Systems (ITS) [MQTT](https://mqtt.org/) client based on the [JSon](https://www.json.org) [ETSI](https://www.etsi.org/committee/its) specification transcription provides a ready to connect project for the mobility (connected and autonomous vehicles, road side units, vulnerable road users,...).
9pub mod exchange;
10pub(crate) mod information;
11pub mod mortal;
12pub(crate) mod typed;
13
14use crate::reception::mortal::Mortal;
15use std::fmt::Debug;
16
17pub trait Reception: Clone + Debug + PartialEq + Mortal {}