rsiot/components_config/master_device/
buffer_bound.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::fmt::Debug;

/// Ограничения для буфера данных
///
/// На структурах необходимо реализовать:
///
/// ```rust
/// #[derive(Clone, Debug, Default, PartialEq)]
/// ```
pub trait BufferBound
where
    Self: Clone + Debug + Default + PartialEq + Send + Sync,
{
}