Value returns the underlying value of the field. Play: https://go.dev/play/p/qufYEU2o4Oi
()
| 34 | // Value returns the underlying value of the field. |
| 35 | // Play: https://go.dev/play/p/qufYEU2o4Oi |
| 36 | func (f *Field) Value() any { |
| 37 | return f.rvalue.Interface() |
| 38 | } |
| 39 | |
| 40 | // IsEmbedded returns true if the given field is an embedded field. |
| 41 | // Play: https://go.dev/play/p/wV2PrbYm3Ec |