pub enum ThreadCount {
Default,
NumThreads(usize),
}Expand description
Number of fuser event-loop threads used to serve a mount. This configures fuser session threading, not an internal worker pool.
Variants§
Default
Use the current machine parallelism as reported by the standard library.
NumThreads(usize)
Use an explicit number of fuser event-loop threads.
Trait Implementations§
Source§impl Debug for ThreadCount
impl Debug for ThreadCount
Source§impl Default for ThreadCount
impl Default for ThreadCount
Source§fn default() -> ThreadCount
fn default() -> ThreadCount
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ThreadCount
impl RefUnwindSafe for ThreadCount
impl Send for ThreadCount
impl Sync for ThreadCount
impl Unpin for ThreadCount
impl UnsafeUnpin for ThreadCount
impl UnwindSafe for ThreadCount
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