pub trait TransferEvent: Send + Sync {
// Required method
fn transfer(&self) -> impl Future<Output = Self> + Send;
}Expand description
Transfers any move-only state out of self into a new event that is otherwise a clone.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.