pub trait FluentNetworkApi: Sized {
// Required method
fn into_network(self) -> LinkNetwork;
// Provided method
fn into_fluent(self) -> FluentPipeline { ... }
}Expand description
Fluent adapter over LinkNetwork operations.
Required Methods§
Sourcefn into_network(self) -> LinkNetwork
fn into_network(self) -> LinkNetwork
Converts self into the underlying network executor.
Provided Methods§
Sourcefn into_fluent(self) -> FluentPipeline
fn into_fluent(self) -> FluentPipeline
Starts a fluent chain over the same network executor.
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.