(v json.RawMessage)
| 907 | func (m StructValue) ToString() string { return fmt.Sprintf("%v", m.v) } |
| 908 | |
| 909 | func NewJsonValue(v json.RawMessage) JsonValue { |
| 910 | return JsonValue{v: v} |
| 911 | } |
| 912 | |
| 913 | func (m JsonValue) Nil() bool { return m.v == nil } |
| 914 | func (m JsonValue) Err() bool { return false } |
no outgoing calls