pub trait BlockBuilder: AirBuilder {
// Provided method
fn assert_block_eq<Lhs: Into<Self::Expr>, Rhs: Into<Self::Expr>>(
&mut self,
lhs: Block<Lhs>,
rhs: Block<Rhs>,
) { ... }
}
Provided Methods§
fn assert_block_eq<Lhs: Into<Self::Expr>, Rhs: Into<Self::Expr>>( &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.