pub enum ParserPackMemoryControl {
LinuxCgroupV2,
LinuxProcStatus,
WindowsJobObject,
}Expand description
Platform memory-control path exercised by the exact packaged worker probe.
Variants§
LinuxCgroupV2
A delegated Linux cgroup-v2 memory.max ceiling enforced the limit.
LinuxProcStatus
The Linux supervisor sampled /proc/<pid>/status and killed the process group.
WindowsJobObject
A Windows no-breakaway Job Object enforced committed-memory ceilings.
Trait Implementations§
Source§impl Clone for ParserPackMemoryControl
impl Clone for ParserPackMemoryControl
Source§fn clone(&self) -> ParserPackMemoryControl
fn clone(&self) -> ParserPackMemoryControl
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParserPackMemoryControl
impl Debug for ParserPackMemoryControl
Source§impl<'de> Deserialize<'de> for ParserPackMemoryControl
impl<'de> Deserialize<'de> for ParserPackMemoryControl
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ParserPackMemoryControl
impl PartialEq for ParserPackMemoryControl
Source§impl Serialize for ParserPackMemoryControl
impl Serialize for ParserPackMemoryControl
impl Copy for ParserPackMemoryControl
impl Eq for ParserPackMemoryControl
impl StructuralPartialEq for ParserPackMemoryControl
Auto Trait Implementations§
impl Freeze for ParserPackMemoryControl
impl RefUnwindSafe for ParserPackMemoryControl
impl Send for ParserPackMemoryControl
impl Sync for ParserPackMemoryControl
impl Unpin for ParserPackMemoryControl
impl UnwindSafe for ParserPackMemoryControl
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.