libzeep

PrevUpHomeNext

Struct template deserializer_impl<T, std::enable_if_t< not detail::is_compatible_type_v< T > and is_type_with_value_serializer_v< T > >>

zeep::json::deserializer::deserializer_impl<T, std::enable_if_t< not detail::is_compatible_type_v< T > and is_type_with_value_serializer_v< T > >>

Synopsis

// In header: <zeep/json/serializer.hpp>


template<typename T> 
struct deserializer_impl<T, std::enable_if_t< not detail::is_compatible_type_v< T > and is_type_with_value_serializer_v< T > >> {
  // types
  typedef zeep::value_serializer< T > value_serializer;

  // public static functions
  static void deserialize(T &, const element_type &);
};

Description

deserializer_impl public static functions

  1. static void deserialize(T & data, const element_type & e);

PrevUpHomeNext