Skip to main content

FluentNetworkApi

Trait FluentNetworkApi 

Source
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§

Source

fn into_network(self) -> LinkNetwork

Converts self into the underlying network executor.

Provided Methods§

Source

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.

Implementors§