ssi-data-integrity 0.4.0

Verifiable Credentials Data Model v1.1 for the `ssi` library.
Documentation
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_ }
    }
}