pub trait Data:
Send
+ Sync
+ 'static { }Expand description
All Send + Sync + 'static types can be used as AsyncEngine request and response types.
This is implemented as a blanket implementation for all types that meet the bounds. Do not manually implement this trait - the blanket implementation covers all valid types.