Trait InteractionInformation

pub trait InteractionInformation:
    Send
    + Sync
    + Clone
    + Debug { }
Available on crate feature cpu_os_threads only.
Expand description

Trait implementations needed for the information generic parameter of Interaction.

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§

§

impl<T> InteractionInformation for T
where T: Send + Sync + Clone + Debug,