| 18 | |
| 19 | template <template <typename> class TSerializer, typename TDestination> |
| 20 | size_t serialize(ArduinoJson::JsonVariantConst source, |
| 21 | TDestination& destination) { |
| 22 | Writer<TDestination> writer(destination); |
| 23 | return doSerialize<TSerializer>(source, writer); |
| 24 | } |
| 25 | |
| 26 | template <template <typename> class TSerializer> |
| 27 | enable_if_t<!TSerializer<StaticStringWriter>::producesText, size_t> serialize( |
nothing calls this directly
no outgoing calls
no test coverage detected