ReflectiveTSend

Trait ReflectiveTSend 

Source
pub trait ReflectiveTSend {
    type T: Send;
}
Expand description

Helper trait to extract the T parameter from an event reference via associated types.

This helps keep type signatures simple. You should never need this in user code, as it only exists for internal type resolving. It is public only due to type system rules.

Required Associated Types§

Source

type T: Send

The type T extracted from the type signature.

Implementors§