Skip to main content

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".

Implementors§

Source§

impl<T> DataFraction for T
where T: DeserializeOwned + Serialize + Clone + Debug + Sync + Send + 'static,