pub trait Map { // Required method fn map<T, V>(v: V) -> T where V: Into<Vec<u8>>, T: for<'a> BigInt<'a>; }
A trait describing a conversion from an arbitrary type to a fixed size BigInt.
BigInt