Skip to main content

Flows

Trait Flows 

Source
pub trait Flows:
    Send
    + Sync
    + 'static { }
Expand description

Blanket trait for data in a Flow.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> Flows for T
where T: Send + Sync + 'static,