DataFraction

Trait DataFraction 

Source
pub trait DataFraction:
    DeserializeOwned
    + Serialize
    + Clone
    + Debug
    + Sync
    + Send
    + 'static { }
Expand description

Requirements for a data fraction in a data flow.

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> DataFraction for T
where T: DeserializeOwned + Serialize + Clone + Debug + Sync + Send + 'static,