Trait GlobalSlotSinceGenesisInterface

Source
pub trait GlobalSlotSinceGenesisInterface {
    type W: WitnessGenerator<Fp>;
    type Bool: BoolInterface;

    // Required methods
    fn equal(&self, other: &Self, w: &mut Self::W) -> Self::Bool;
    fn exists_no_check(self, w: &mut Self::W) -> Self;
}

Required Associated Types§

Required Methods§

Source

fn equal(&self, other: &Self, w: &mut Self::W) -> Self::Bool

Source

fn exists_no_check(self, w: &mut Self::W) -> Self

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§