func isOutStream(in reflect.Type) bool {
    sendMethod, exists := in.MethodByName("Send")
    if !exists {
        return false
    }