radix-engine 1.3.1

Reference implementation of Radix Engine, from the Radix DLT project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::internal_prelude::*;
use radix_engine_interface::blueprints::resource::AccessRule;

#[derive(ScryptoSbor, ScryptoEvent, Debug)]
pub struct SetRoleEvent {
    pub role_key: RoleKey,
    pub rule: AccessRule,
}

#[derive(ScryptoSbor, ScryptoEvent, Debug)]
pub struct SetOwnerRoleEvent {
    pub rule: AccessRule,
}

#[derive(ScryptoSbor, ScryptoEvent, Debug)]
pub struct LockOwnerRoleEvent {}