pub enum DirHandlerMode {
ReadOnly,
WriteOnly,
ReadWrite,
}
Variants§
ReadOnly
Serve only read requests.
WriteOnly
Serve only write requests.
ReadWrite
Server read and write requests.
Auto Trait Implementations§
impl Freeze for DirHandlerMode
impl RefUnwindSafe for DirHandlerMode
impl Send for DirHandlerMode
impl Sync for DirHandlerMode
impl Unpin for DirHandlerMode
impl UnwindSafe for DirHandlerMode
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