AnySend

Trait AnySend 

Source
pub trait AnySend: Any + Send { }
Expand description

Represents a type that can be dynamically downcast and is safe to send across threads.

This trait combines the capabilities of Any and Send, ensuring that types implementing it can be safely sent across thread boundaries.

Implementors§

Source§

impl<T> AnySend for T
where T: Any + Send,

Implements AnySend for types that are Any and Send.

This trait signifies that a type can be safely sent across thread boundaries.