Trait block::IntoConcreteBlock [] [src]

pub trait IntoConcreteBlock<A>: Sized where
    A: BlockArguments
{ type Ret; fn into_concrete_block(self) -> ConcreteBlock<A, Self::Ret, Self>; }

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