Enum actix_web::middleware::TrailingSlash
source · #[non_exhaustive]pub enum TrailingSlash {
Trim,
MergeOnly,
Always,
}
Expand description
Determines the behavior of the NormalizePath
middleware.
The default is TrailingSlash::Trim
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trim
Trim trailing slashes from the end of the path.
Using this will require all routes to omit trailing slashes for them to be accessible.
MergeOnly
Only merge any present multiple trailing slashes.
This option provides the best compatibility with behavior in actix-web v2.0.
Always
Always add a trailing slash to the end of the path.
Using this will require all routes have a trailing slash for them to be accessible.
Trait Implementations§
source§impl Clone for TrailingSlash
impl Clone for TrailingSlash
source§fn clone(&self) -> TrailingSlash
fn clone(&self) -> TrailingSlash
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 TrailingSlash
impl Debug for TrailingSlash
source§impl Default for TrailingSlash
impl Default for TrailingSlash
source§fn default() -> TrailingSlash
fn default() -> TrailingSlash
Returns the “default value” for a type. Read more
impl Copy for TrailingSlash
Auto Trait Implementations§
impl Freeze for TrailingSlash
impl RefUnwindSafe for TrailingSlash
impl Send for TrailingSlash
impl Sync for TrailingSlash
impl Unpin for TrailingSlash
impl UnwindSafe for TrailingSlash
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: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
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
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)