Trait block::IntoConcreteBlock 
source · pub trait IntoConcreteBlock<A>: Sizedwhere
    A: BlockArguments,{
    type Ret;
    // Required method
    fn into_concrete_block(self) -> ConcreteBlock<A, Self::Ret, Self>;
}Expand description
Types that may be converted into a ConcreteBlock.
Required Associated Types§
Required Methods§
sourcefn into_concrete_block(self) -> ConcreteBlock<A, Self::Ret, Self>
 
fn into_concrete_block(self) -> ConcreteBlock<A, Self::Ret, Self>
Consumes self to create a ConcreteBlock.