Trait MakeEvents

Source
pub trait MakeEvents {
    const DERIVER_NAME: ();

    // Required methods
    fn get_salt_phrase() -> &'static LazyParam;
    fn get_hash_prefix() -> &'static LazyParam;
    fn events(&self) -> &[Event];
    fn empty_hash() -> Fp;
}
Expand description

Required Associated Constants§

Required Methods§

Source

fn get_salt_phrase() -> &'static LazyParam

Source

fn get_hash_prefix() -> &'static LazyParam

Source

fn events(&self) -> &[Event]

Source

fn empty_hash() -> Fp

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§