pub trait ZkpInto<T> {
    // Required method
    fn zkp_into(self) -> T;
}
Expand description

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

Required Methods§

Implementors§

source§

impl<T, U> ZkpInto<T> for Uwhere T: ZkpFrom<U>,