Skip to main content

mi_option_t

Enum mi_option_t 

Source
#[repr(C)]
pub enum mi_option_t {
Show 38 variants mi_option_show_errors = 0, mi_option_show_stats = 1, mi_option_verbose = 2, mi_option_arena_eager_commit = 4, mi_option_purge_decommits = 5, mi_option_allow_large_os_pages = 6, mi_option_reserve_huge_os_pages = 7, mi_option_reserve_huge_os_pages_at = 8, mi_option_reserve_os_memory = 9, mi_option_purge_delay = 15, mi_option_use_numa_nodes = 16, mi_option_disallow_os_alloc = 17, mi_option_os_tag = 18, mi_option_max_errors = 19, mi_option_max_warnings = 20, mi_option_destroy_on_exit = 22, mi_option_arena_reserve = 23, mi_option_arena_purge_mult = 24, mi_option_disallow_arena_alloc = 26, mi_option_retry_on_oom = 27, mi_option_guarded_min = 29, mi_option_guarded_max = 30, mi_option_guarded_precise = 31, mi_option_guarded_sample_rate = 32, mi_option_guarded_sample_seed = 33, mi_option_generic_collect = 34, mi_option_page_reclaim_on_free = 35, mi_option_page_full_retain = 36, mi_option_page_max_candidates = 37, mi_option_max_vabits = 38, mi_option_pagemap_commit = 39, mi_option_page_commit_on_demand = 40, mi_option_page_max_reclaim = 41, mi_option_page_cross_thread_max_reclaim = 42, mi_option_allow_thp = 43, mi_option_minimal_purge_size = 44, mi_option_arena_max_object_size = 45, mi_option_arena_is_numa_local = 46,
}

Variants§

§

mi_option_show_errors = 0

§

mi_option_show_stats = 1

§

mi_option_verbose = 2

§

mi_option_arena_eager_commit = 4

§

mi_option_purge_decommits = 5

§

mi_option_allow_large_os_pages = 6

§

mi_option_reserve_huge_os_pages = 7

§

mi_option_reserve_huge_os_pages_at = 8

§

mi_option_reserve_os_memory = 9

§

mi_option_purge_delay = 15

§

mi_option_use_numa_nodes = 16

§

mi_option_disallow_os_alloc = 17

§

mi_option_os_tag = 18

§

mi_option_max_errors = 19

§

mi_option_max_warnings = 20

§

mi_option_destroy_on_exit = 22

§

mi_option_arena_reserve = 23

§

mi_option_arena_purge_mult = 24

§

mi_option_disallow_arena_alloc = 26

§

mi_option_retry_on_oom = 27

§

mi_option_guarded_min = 29

§

mi_option_guarded_max = 30

§

mi_option_guarded_precise = 31

§

mi_option_guarded_sample_rate = 32

§

mi_option_guarded_sample_seed = 33

§

mi_option_generic_collect = 34

§

mi_option_page_reclaim_on_free = 35

§

mi_option_page_full_retain = 36

§

mi_option_page_max_candidates = 37

§

mi_option_max_vabits = 38

§

mi_option_pagemap_commit = 39

§

mi_option_page_commit_on_demand = 40

§

mi_option_page_max_reclaim = 41

§

mi_option_page_cross_thread_max_reclaim = 42

§

mi_option_allow_thp = 43

§

mi_option_minimal_purge_size = 44

§

mi_option_arena_max_object_size = 45

§

mi_option_arena_is_numa_local = 46

Trait Implementations§

Source§

impl Clone for mi_option_t

Source§

fn clone(&self) -> mi_option_t

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for mi_option_t

Source§

impl Debug for mi_option_t

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for mi_option_t

Source§

impl PartialEq for mi_option_t

Source§

fn eq(&self, other: &mi_option_t) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for mi_option_t

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.