pub trait EventRef<T>:
Deref<Target = OnceEvent<T>>
+ ReflectiveTSend
+ EventRefPrivate<T>
+ Sealedwhere
T: Send,{ }Expand description
Enables a sender or receiver to reference the event that connects them.
This is a sealed trait and exists for internal use only. You never need to use it.