reflect.Value.CanSet (method)

5 uses

	reflect (current package)
		value.go#L365: func (v Value) CanSet() bool {

	encoding/binary
		binary.go#L631: 			if v := v.Field(i); v.CanSet() || t.Field(i).Name != "_" {
		binary.go#L696: 			if v := v.Field(i); v.CanSet() || t.Field(i).Name != "_" {

	encoding/json
		decode.go#L464: 		if decodingNull && v.CanSet() {
		decode.go#L708: 							if !subv.CanSet() {