keri 0.3.0

Core library for the Key Event Receipt Infrastructure
Documentation
1
2
3
4
5
6
7
8
9
10
use super::signatory::Signatory;
use crate::prefix::IdentifierPrefix;

#[derive(Default, PartialEq, Debug, Clone)]
pub struct DelegatedIdentifierState {
    pub prefix: IdentifierPrefix,
    pub sn: u64,
    pub perms: String,
    pub signatory: Signatory,
}