Trait Post

Source
pub trait Post: Send + 'static { }
Expand description

Types that can be sent to another thread. In this shim, this trait is just an alias for Send + 'static, but in web-thread some types can be sent only by performing an explicit transfer operation.

Implementors§

Source§

impl<T: Send + 'static> Post for T