#[non_exhaustive]pub enum ProcEndpoint {
Version,
Worlds,
Du,
Df,
Pool,
AuditVerify,
}Expand description
Stable proc endpoint identity carried by ValidatedProcPath.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Version
Engine build version string.
Worlds
Enumerate every world (durable + in-memory).
Du
Per-world body byte size (du-like).
Df
Aggregate storage + memory usage and quotas (df-like).
Pool
Read cache + ledger writer pool counters.
AuditVerify
Verify a single world’s HMAC audit chain.
Trait Implementations§
Source§impl Clone for ProcEndpoint
impl Clone for ProcEndpoint
Source§fn clone(&self) -> ProcEndpoint
fn clone(&self) -> ProcEndpoint
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 ProcEndpoint
Source§impl Debug for ProcEndpoint
impl Debug for ProcEndpoint
impl Eq for ProcEndpoint
Source§impl PartialEq for ProcEndpoint
impl PartialEq for ProcEndpoint
Source§fn eq(&self, other: &ProcEndpoint) -> bool
fn eq(&self, other: &ProcEndpoint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProcEndpoint
Auto Trait Implementations§
impl Freeze for ProcEndpoint
impl RefUnwindSafe for ProcEndpoint
impl Send for ProcEndpoint
impl Sync for ProcEndpoint
impl Unpin for ProcEndpoint
impl UnsafeUnpin for ProcEndpoint
impl UnwindSafe for ProcEndpoint
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