// WithoutServerError将忽略错误,来自主应用程序的`Run`函数。// 用法:// err:= app.Run(iris.Addr(":8080"),iris.WithoutServerError(iris.ErrServerClosed))// 如果服务器的错误是`http/iris#ErrServerClosed`,//将返回`nil`。// 也参见`Configuration#IgnoreServerErrors [] string`。

// 示例: https://github.com/kataras/iris/tree/master/_examples/http-listening/listen-addr/omit-server-errorsfunc WithoutServerError(errors ...error) Configurator

//WithoutStartupLog 将关闭第一次运行终端就发送信息var WithoutStartupLog

// WithoutInterruptHandler禁用自动正常服务器关闭,当按下control / cmd + C时var WithoutInterruptHandler

// WithoutPathCorrection禁用PathCorrection设置//参见`配置`var WithoutPathCorrection

// WithoutBodyConsumptionOnUnmarshal禁用BodyConsumptionOnUnmarshal设置//参见`配置`var WithoutBodyConsumptionOnUnmarshal

// WithoutAutoFireStatusCode禁用AutoFireStatusCode设置//参见`配置`var WithoutAutoFireStatusCode

// WithPathEscape使PathEscape设置变为enanbles//参见`配置`var WithPathEscape

// WithOptimizations可以强制应用程序优化以获得尽可能最佳的性能//参见`配置`var WithOptimizations

// WithFireMethodNotAllowed使FireMethodNotAllowed设置变为可用//参见`配置`var WithFireMethodNotAllowed

//使用时间格式设置时间格式设置//参见`配置`func WithTimeFormat(timeformat string) Configurator

// WithCharset设置Charset设置//参见`配置`func WithCharset(charset string) Configurator

// WithOtherValue根据其他设置的键添加值//参见`配置`func WithOtherValue(key string, val interface{}) Configurator