Data

Trait Data 

Source
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.

Implementors§

Source§

impl<T: Send + Sync + 'static> Data for T