pub trait TryBuilderFlow<M>where
Self: Sized,{
type Error;
// Required method
fn build(self) -> Result<M, Self::Error>;
}Available on crate feature
async only.Expand description
A TryBuilderFlow is generic over M
which is the mediator that will be tried to be
built by TryBuilderFlow::build().
Required Associated Types§
Required Methods§
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.