ecto_fields v1.3.0 EctoFields.IPv4

Link to this section Summary

Functions

Validate that the given value is a valid ipv4

Callback implementation for Ecto.Type.dump/1.

Callback implementation for Ecto.Type.equal?/2.

Callback implementation for Ecto.Type.load/1.

Callback implementation for Ecto.Type.type/0.

Link to this section Functions

Validate that the given value is a valid ipv4

Examples

iex> EctoFields.IPv4.cast("192.168.10.1")
{:ok, "192.168.10.1"}

iex> EctoFields.IPv4.cast("2001:1620:28:1:b6f:8bca:93:a116")
:error

iex> EctoFields.IPv4.cast("http://example.com")
:error

Callback implementation for Ecto.Type.dump/1.

Callback implementation for Ecto.Type.equal?/2.

Callback implementation for Ecto.Type.load/1.

Callback implementation for Ecto.Type.type/0.