pub trait TokenIdInterfacewhere
Self: Sized,{
type W: WitnessGenerator<Fp>;
type Bool: BoolInterface;
// Required method
fn equal(a: &TokenId, b: &TokenId, w: &mut Self::W) -> Self::Bool;
}
Required Associated Types§
type W: WitnessGenerator<Fp>
type Bool: BoolInterface
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.