Struct tikv_jemalloc_ctl::max_background_threads [−][src]
Maximum number of background threads that will be created.
use tikv_jemalloc_ctl::max_background_threads; let m = max_background_threads::mib().unwrap(); println!("max_background_threads: {}", m.read().unwrap()); m.write(0).unwrap(); assert_eq!(m.read().unwrap(), 0);
Implementations
impl max_background_threads
[src]
pub fn mib() -> Result<max_background_threads_mib>
[src]
Returns Management Information Base (MIB)
This value can be used to access the key without doing string lookup.
pub fn name() -> &'static Name
[src]
Key [::keys::Name
].
impl max_background_threads
[src]
impl max_background_threads
[src]
impl max_background_threads
[src]
pub fn update(value: size_t) -> Result<size_t>
[src]
Updates key to value
returning its old value using string API.
Auto Trait Implementations
impl Send for max_background_threads
impl Sync for max_background_threads
impl Unpin for max_background_threads
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,