pub trait HashDomains<C: CurveAffine>: Clone + Debug {
    // Required method
    fn Q(&self) -> C;
}
Expand description

Trait allowing circuit’s Sinsemilla HashDomains to be enumerated.

Required Methods§

source

fn Q(&self) -> C

Returns the Q constant for this domain.

Implementors§