Trait Keys

Source
pub trait Keys {
    // Required method
    fn implicit_vp_key() -> Key;
}
Expand description

Abstract parameters storage keys interface

Required Methods§

Source

fn implicit_vp_key() -> Key

Key for implicit VP

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§

Source§

impl<S> Keys for Store<S>