Co oznacza znak podkreślenia i nazwa interfejsu po słowie kluczowym var?

Zhttp://golang.org/src/pkg/database/sql/driver/types.go:

type ValueConverter interface {
    // ConvertValue converts a value to a driver Value.
    ConvertValue(v interface{}) (Value, error)
}

var Bool boolType

type boolType struct{}

var _ ValueConverter = boolType{} // line 58

func (boolType) String() string { return "Bool" }

func (boolType) ConvertValue(src interface{}) (Value, error) {....}

Wiedziałem, że ValueConverter jest nazwą interfejsu. Wydaje się, że linia 58 deklaruje, że interfejs implementacji boolType ValueConverter, ale czy to jest konieczne? Usunąłem linię 58 i kod działa dobrze.

questionAnswers(2)

yourAnswerToTheQuestion