Ecto.ParameterizedType.load
You're seeing just the callback
load
, go back to Ecto.ParameterizedType module for more information.
Specs
Loads the given term into a ParameterizedType.
It receives a loader
function in case the parameterized
type is also a composite type. In order to load the inner
type, the loader
must be called with the inner type and
the inner value as argument.
For more information on loading, see Ecto.Type.load/1
.
Note that this callback will be called when loading a nil
value, unlike Ecto.Type.load/1
.