Trait InteractionInf

Source
pub trait InteractionInf:
    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§

Source§

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