Struct soroban_sdk::events::Events
source · pub struct Events(_);
Expand description
Events publishes events for the currently executing contract.
use soroban_sdk::Env;
let event = env.events();
let data = map![&env, (1u32, 2u32)];
let topics0 = ();
let topics1 = (0u32,);
let topics2 = (0u32, 1u32);
let topics3 = (0u32, 1u32, 2u32);
let topics4 = (0u32, 1u32, 2u32, 3u32);
event.publish(topics0, data.clone());
event.publish(topics1, data.clone());
event.publish(topics2, data.clone());
event.publish(topics3, data.clone());
event.publish(topics4, data.clone());
Implementations§
source§impl Events
impl Events
sourcepub fn publish<T, D>(&self, topics: T, data: D)where
T: Topics,
D: IntoVal<Env, RawVal>,
pub fn publish<T, D>(&self, topics: T, data: D)where
T: Topics,
D: IntoVal<Env, RawVal>,
Publish an event.
Event data is specified in data
. Data may be any value or
type, including types defined by contracts using contracttype.
Event topics must not contain:
- Vec
- Map
- Bytes/BytesN longer than 32 bytes
- contracttype
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Events
impl !Send for Events
impl !Sync for Events
impl Unpin for Events
impl !UnwindSafe for Events
Blanket Implementations§
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more