pub trait AlipayParam {
    fn to_map(&self) -> HashMap<String, FieldValue, RandomState>;
fn from_map(
        map: HashMap<String, FieldValue, RandomState>
    ) -> Result<Self, StructMapError>; }

Required methods

Implementors