piam-types 0.0.0

Patsnap IAM types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub enum Effect {
    Allow(AllowEffectKind),
    Deny(DenyEffectKind),
}

pub enum AllowEffectKind {
    EmitEvent,
}

pub enum DenyEffectKind {
    EmitEvent,
}

struct Log {}