IntoFlow

Trait IntoFlow 

Source
pub trait IntoFlow {
    type RequestData;

    // Required method
    fn into_flow(self) -> Flow<Self::RequestData>;
}
Expand description

A value-to-value conversion that consumes the input value and converts it in a Flow.

Required Associated Types§

Source

type RequestData

The user data type of the target Flow.

Required Methods§

Source

fn into_flow(self) -> Flow<Self::RequestData>

Converts this type into the Flow type.

Implementations on Foreign Types§

Source§

impl IntoFlow for ()

Implementors§