Struct spring_web::config::Middlewares
source · pub struct Middlewares {
pub compression: Option<EnableMiddleware>,
pub limit_payload: Option<LimitPayloadMiddleware>,
pub logger: Option<EnableMiddleware>,
pub catch_panic: Option<EnableMiddleware>,
pub timeout_request: Option<TimeoutRequestMiddleware>,
pub cors: Option<CorsMiddleware>,
pub static_assets: Option<StaticAssetsMiddleware>,
}
Expand description
Server middleware configuration structure.
Fields§
§compression: Option<EnableMiddleware>
Middleware that enable compression for the response.
limit_payload: Option<LimitPayloadMiddleware>
Middleware that limit the payload request.
logger: Option<EnableMiddleware>
Middleware that improve the tracing logger and adding trace id for each request.
catch_panic: Option<EnableMiddleware>
catch any code panic and log the error.
timeout_request: Option<TimeoutRequestMiddleware>
Setting a global timeout for the requests
cors: Option<CorsMiddleware>
Setting cors configuration
static_assets: Option<StaticAssetsMiddleware>
Serving static assets
Trait Implementations§
source§impl Clone for Middlewares
impl Clone for Middlewares
source§fn clone(&self) -> Middlewares
fn clone(&self) -> Middlewares
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for Middlewares
impl Debug for Middlewares
source§impl<'de> Deserialize<'de> for Middlewares
impl<'de> Deserialize<'de> for Middlewares
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl JsonSchema for Middlewares
impl JsonSchema for Middlewares
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreAuto Trait Implementations§
impl Freeze for Middlewares
impl RefUnwindSafe for Middlewares
impl Send for Middlewares
impl Sync for Middlewares
impl Unpin for Middlewares
impl UnwindSafe for Middlewares
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)