radix_common/traits/
event.rs

1use crate::data::scrypto::{ScryptoDecode, ScryptoDescribe, ScryptoEncode};
2
3pub trait ScryptoEvent
4where
5    Self: ScryptoEncode + ScryptoDecode + ScryptoDescribe,
6{
7    const EVENT_NAME: &'static str;
8}