pub enum TrackedLimit {
Show 23 variants
JavascriptEventChannel,
V8SessionFrames,
SidecarStdinFrames,
SidecarStdoutFrames,
CompletedSidecarResponses,
PendingProcessEvents,
PendingSidecarResponses,
OutboundSidecarRequests,
VmProcesses,
VmOpenFds,
VmPipes,
VmPtys,
VmSockets,
VmConnections,
VmSocketBufferedBytes,
VmSocketDatagramQueueLen,
VmFilesystemBytes,
VmInodes,
V8HeapBytes,
V8CpuTimeMs,
V8WallClockMs,
WasmFuelMs,
WasmMemoryBytes,
}Expand description
Stable catalog of tracked limits that may emit near-capacity or exhaustion
warnings. Keep website/src/content/docs/docs/features/resource-limits.mdx
in sync when adding, removing, or renaming variants so host-visible warning
names and the documented constants do not drift.
Variants§
JavascriptEventChannel
V8SessionFrames
SidecarStdinFrames
SidecarStdoutFrames
CompletedSidecarResponses
PendingProcessEvents
PendingSidecarResponses
OutboundSidecarRequests
VmProcesses
VmOpenFds
VmPipes
VmPtys
VmSockets
VmConnections
VmSocketBufferedBytes
VmSocketDatagramQueueLen
VmFilesystemBytes
VmInodes
V8HeapBytes
V8CpuTimeMs
V8WallClockMs
WasmFuelMs
WasmMemoryBytes
Implementations§
Source§impl TrackedLimit
impl TrackedLimit
Trait Implementations§
Source§impl Clone for TrackedLimit
impl Clone for TrackedLimit
Source§fn clone(&self) -> TrackedLimit
fn clone(&self) -> TrackedLimit
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TrackedLimit
Source§impl Debug for TrackedLimit
impl Debug for TrackedLimit
impl Eq for TrackedLimit
Source§impl Hash for TrackedLimit
impl Hash for TrackedLimit
Source§impl PartialEq for TrackedLimit
impl PartialEq for TrackedLimit
Source§fn eq(&self, other: &TrackedLimit) -> bool
fn eq(&self, other: &TrackedLimit) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TrackedLimit
Auto Trait Implementations§
impl Freeze for TrackedLimit
impl RefUnwindSafe for TrackedLimit
impl Send for TrackedLimit
impl Sync for TrackedLimit
impl Unpin for TrackedLimit
impl UnsafeUnpin for TrackedLimit
impl UnwindSafe for TrackedLimit
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