timely

Trait Data

Source
pub trait Data: Clone + 'static { }
Expand description

A composite trait for types usable as data in timely dataflow.

The Data trait is necessary for all types that go along timely dataflow channels.

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: Clone + 'static> Data for T