ssi_data_integrity/any/suite/
unknown.rs1use 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}