Trait ZkpFrom

Source
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§

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§