func (g *GoInterface) ToUint() (uint64, error) {
    v := g.v
    if v.Kind() == reflect.Ptr {
        v = v.Elem()
    }