1
2
3
4
5
6
7
use codec::{Decode, Encode};

#[derive(Clone, Debug, Eq, PartialEq, Decode, Encode)]
pub struct DeviceMaskData<M, G> {
    pub mask: M,
    pub gen: G,
}