use DeserializeOwned;
use ;
use Value;
/// Matomo encodes "no items" as integer `0` (and occasionally `null`, `[]` or
/// `{}`) but a populated list as an array of objects. Map all of the empty
/// forms to an empty `Vec`, and otherwise deserialize the array.
///
/// One reusable deserializer; do not scatter untagged enums for this.