Trait timely::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.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: Clone + 'static> Data for T