reflect.TypeConvertibleTo
package main

import (
    "fmt"
    "reflect"
)

type Address [20]byte

func main() {
    fmt.Println("Hello, playground")
    
    //v := make([]byte,20)
    var v [20]byte
    vtype := reflect.ValueOf(v).Type()
    fmt.Printf("type slice:%v\n", vtype)
    
    var addr Address
    atype := reflect.ValueOf(addr).Type()
    fmt.Printf("type address:%v\n", atype)
    
    fmt.Println("convertible:", vtype.ConvertibleTo(atype))
    
}