pub trait RsOp<F: RsFunc> {
// Required method
fn rs_op(
&self,
f: &F,
all: &[impl RsId<F>],
blargs: &[F::Block],
) -> Result<TokenStream>;
}Required Methods§
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.