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§
fn assert_block_eq<Lhs, Rhs>(&mut self, lhs: Block<Lhs>, rhs: Block<Rhs>)
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.