Trait block2::IntoConcreteBlock[][src]

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.

Associated Types

The return type of the resulting ConcreteBlock.

Required methods

Consumes self to create a ConcreteBlock.

Implementors