pub trait IntoConcreteBlock<A: BlockArguments + EncodeArguments>: Sized {
    type Ret: Encode;

    fn into_concrete_block(self) -> ConcreteBlock<A, Self::Ret, Self>;
}
Expand description

Types that may be converted into a ConcreteBlock.

Required Associated Types

The return type of the resulting ConcreteBlock.

Required Methods

Consumes self to create a ConcreteBlock.

Implementors