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