1 2 3 4 5 6 7
use crate::{api::PrintApi, types::BigUint}; impl PrintApi for super::UncallableApi { fn print_biguint(&self, _amount: &BigUint<Self>) { unreachable!(); } }