pub trait RegisterRichInteractions {
    fn register_rich_interactions(self) -> Self;
    fn register_rich_interactions_with(
        self,
        rich_handler: RichEventHandler
    ) -> Self; }

Required Methods

Implementations on Foreign Types

Registers the rich interactions configuration on the client

Registers the rich interactions with a custom rich event handler

Implementors