public static bool _ <T>(this go.net.http_package.requestTooLarger target, out T result)
 {
     try
     {
         result = target._ <T>();
         return(true);
     }
     catch (PanicException)
     {
         result = default !;
 public static T _ <T>(this go.net.http_package.requestTooLarger target)
 {
     try
     {
         return(((go.net.http_package.requestTooLarger <T>)target).Target);
     }
     catch (NotImplementedException ex)
     {
         throw new PanicException($"interface conversion: {GetGoTypeName(target.GetType())} is not {GetGoTypeName(typeof(T))}: missing method {ex.InnerException?.Message}");
     }
 }