ssi_data_integrity/any/suite/
unknown.rs

1use ssi_data_integrity_core::Type;
2
3#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
4pub struct UnknownSuite {
5    pub type_: Type,
6}
7
8impl UnknownSuite {
9    pub fn new(type_: Type) -> Self {
10        Self { type_ }
11    }
12}