Ecto.Time

An Ecto type for time.

Source

Summary

cast(t)

Casts to time

dump(time)

Converts an Ecto.Time into a time tuple (in the form {hour, min, sec, usec})

load(arg1)

Converts a time tuple like the one returned by dump/1 into an Ecto.Time

local()

Returns an Ecto.Time in local time

to_iso8601(time)

Converts Ecto.Time to its ISO 8601 UTC representation

to_string(time)

Converts Ecto.Time to a string representation

type()

The Ecto primitive type

utc()

Returns an Ecto.Time in UTC

Functions

cast(t)

Casts to time.

Source
dump(time)

Converts an Ecto.Time into a time tuple (in the form {hour, min, sec, usec}).

Source
load(arg1)

Converts a time tuple like the one returned by dump/1 into an Ecto.Time.

Source
local()

Returns an Ecto.Time in local time.

Source
to_iso8601(time)

Converts Ecto.Time to its ISO 8601 UTC representation.

Source
to_string(time)

Converts Ecto.Time to a string representation.

Source
type()

The Ecto primitive type.

Source
utc()

Returns an Ecto.Time in UTC.

Source