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§
Sourcetype RequestData
type RequestData
The user data type of the target Flow.
Required Methods§
Sourcefn into_flow(self) -> Flow<Self::RequestData>
fn into_flow(self) -> Flow<Self::RequestData>
Converts this type into the Flow type.