pub struct NormalizePath { /* private fields */ }
Expand description

Path normalization helper

By normalizing it means:

  • Add a trailing slash to the path.
  • Remove a trailing slash from the path.
  • Double slashes are replaced by one.

The handler returns as soon as it finds a path that resolves correctly. The order if all enable is 1) merge, 3) both merge and append and 3) append. If the path resolves with at least one of those conditions, it will redirect to the new path.

If append is true append slash when needed. If a resource is defined with trailing slash and the request comes without it, it will append it automatically.

If merge is true, merge multiple consecutive slashes in the path into one.

This handler designed to be use as a handler for application’s default resource.

use actix_web::http::NormalizePath;

fn main() {
    let app = App::new()
        .resource("/test/", |r| r.f(index))
        .default_resource(|r| r.h(NormalizePath::default()))
        .finish();
}

In this example /test, /test/// will be redirected to /test/ url.

Implementations

Create new NormalizePath instance

Trait Implementations

Create default NormalizePath instance, append is set to true, merge is set to true and redirect is set to StatusCode::MOVED_PERMANENTLY

The type of value that handler will return.
Handle request

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.