blob: c99f3ab1af151b86a17b9893cf32065c425aa275 (
plain) (
blame)
1
2
3
4
5
6
|
/// Options that can be set for the `Router`
#[derive(Debug, PartialEq, Eq, Hash, Clone, Copy)]
pub enum RouterOption {
/// Trim trailing slashes from the URL path
TrimTrailingSlashes,
}
|