pub enum RemoveDirectoryIndex {
None,
Default,
List(Vec<QueryFilter>),
}Expand description
Controls whether directory index files will be removed from the path.
Variants§
None
No directory indices will be removed.
Default
Use the default pattern: index.*
List(Vec<QueryFilter>)
Only directory indices matching any of the provided filters will be removed.
Auto Trait Implementations§
impl Freeze for RemoveDirectoryIndex
impl !RefUnwindSafe for RemoveDirectoryIndex
impl !Send for RemoveDirectoryIndex
impl !Sync for RemoveDirectoryIndex
impl Unpin for RemoveDirectoryIndex
impl UnsafeUnpin for RemoveDirectoryIndex
impl !UnwindSafe for RemoveDirectoryIndex
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