pub trait FromResponse<'a, T> {
// Required method
fn from_cobranca_imediata_basic<MN: Into<Cow<'a, str>>, MC: Into<Cow<'a, str>>>(
cob: CobrancaImediata,
merchant_name: MN,
merchant_city: MC,
) -> T;
}
Required Methods§
fn from_cobranca_imediata_basic<MN: Into<Cow<'a, str>>, MC: Into<Cow<'a, str>>>( cob: CobrancaImediata, merchant_name: MN, merchant_city: MC, ) -> T
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.