···11/// Options that can be set for the `Router`
22#[derive(Debug, PartialEq, Eq, Hash, Clone, Copy)]
33pub enum RouterOption {
44- /// Trim trailing slashes from the URL path
44+ /// Trim trailing slashes from the URL path if it is present and a route
55+ /// match exists
56 TrimTrailingSlashes,
77+ /// Add a trailing slash to the URL path if it is missing and a route
88+ /// match exists
99+ AddMissingTrailingSlash,
610}