pub trait ZkpFrom<T> {
    // Required method
    fn zkp_from(val: T) -> Self;
}
Expand description

See std::convert::From. This trait exists to avoid limitations with foreign trait rules.

Required Methods§

Implementors§