(v time.Time)
| 919 | func (m JsonValue) ToString() string { return string(m.v) } |
| 920 | |
| 921 | func NewTimeValue(v time.Time) TimeValue { |
| 922 | return TimeValue{v: v} |
| 923 | } |
| 924 | |
| 925 | func (m TimeValue) Nil() bool { return m.v.IsZero() } |
| 926 | func (m TimeValue) Err() bool { return false } |
no outgoing calls