Trait BlockBuilder

Source
pub trait BlockBuilder: AirBuilder {
    // Provided method
    fn assert_block_eq<Lhs, Rhs>(&mut self, lhs: Block<Lhs>, rhs: Block<Rhs>)
       where Lhs: Into<Self::Expr>,
             Rhs: Into<Self::Expr> { ... }
}

Provided Methods§

Source

fn assert_block_eq<Lhs, Rhs>(&mut self, lhs: Block<Lhs>, rhs: Block<Rhs>)
where Lhs: Into<Self::Expr>, Rhs: Into<Self::Expr>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<AB> BlockBuilder for AB
where AB: AirBuilder,