#[repr(i32)]pub enum Quirks {
Unspecified = 0,
DisableInitialDump = 1,
DisableOnDemand = 2,
}
Variants§
Unspecified = 0
DisableInitialDump = 1
This has been deprecated and ignored as per 2018-05-01. Full scan at startup is now disabled by default and can be re-enabled using the |scan_all_processes_on_start| arg.
DisableOnDemand = 2
If set, disables the special interaction with “linux.ftrace” data source, where the process stats rescrapes any thread id seen in the ftrace stream.
Implementations§
Trait Implementations§
Source§impl Ord for Quirks
impl Ord for Quirks
Source§impl PartialOrd for Quirks
impl PartialOrd for Quirks
impl Copy for Quirks
impl Eq for Quirks
impl StructuralPartialEq for Quirks
Auto Trait Implementations§
impl Freeze for Quirks
impl RefUnwindSafe for Quirks
impl Send for Quirks
impl Sync for Quirks
impl Unpin for Quirks
impl UnwindSafe for Quirks
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