#[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
Implementations§
Source§impl Quirks
impl Quirks
Sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
Sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
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