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

type Ret

The return type of the resulting ConcreteBlock.

Required Methods

fn into_concrete_block(self) -> ConcreteBlock<A, Self::Ret, Self>

Consumes self to create a ConcreteBlock.

Implementors