rsiot/components_config/master_device/
request_response_bound.rs

1use std::fmt::Debug;
2
3/// Ограничения для структур запросов и ответов
4///
5/// На структурах необходимо реализовать:
6///
7/// ```rust
8/// #[derive(Clone, Debug)]
9/// ```
10pub trait RequestResponseBound
11where
12    Self: Clone + Debug + Send + Sync,
13{
14}