Skip to main content

AnySendSyncClone

Trait AnySendSyncClone 

Source
pub trait AnySendSyncClone:
    Any
    + Send
    + Sync
    + Clone { }
Expand description

Type alias for types that implement Any + Send + Sync + Clone.

This is a trait alias for types that can be stored in the attribute store and safely shared across threads.

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.

Implementors§

Source§

impl<T> AnySendSyncClone for T
where T: Any + Send + Sync + Clone,