pub struct ProcessStatsRequest {
pub process_ref: IsolatedProcessRef,
}Expand description
Carries process stats request data across a host-port boundary. Constructing the value does not call the host; the port method that receives it documents any adapter, network, or storage effect.
Fields§
§process_ref: IsolatedProcessRefTyped process ref reference. Resolving or executing it is a separate policy-gated step.
Trait Implementations§
Source§impl Clone for ProcessStatsRequest
impl Clone for ProcessStatsRequest
Source§fn clone(&self) -> ProcessStatsRequest
fn clone(&self) -> ProcessStatsRequest
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 moreSource§impl Debug for ProcessStatsRequest
impl Debug for ProcessStatsRequest
Source§impl<'de> Deserialize<'de> for ProcessStatsRequest
impl<'de> Deserialize<'de> for ProcessStatsRequest
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
impl Eq for ProcessStatsRequest
Source§impl PartialEq for ProcessStatsRequest
impl PartialEq for ProcessStatsRequest
Source§fn eq(&self, other: &ProcessStatsRequest) -> bool
fn eq(&self, other: &ProcessStatsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProcessStatsRequest
impl Serialize for ProcessStatsRequest
impl StructuralPartialEq for ProcessStatsRequest
Auto Trait Implementations§
impl Freeze for ProcessStatsRequest
impl RefUnwindSafe for ProcessStatsRequest
impl Send for ProcessStatsRequest
impl Sync for ProcessStatsRequest
impl Unpin for ProcessStatsRequest
impl UnsafeUnpin for ProcessStatsRequest
impl UnwindSafe for ProcessStatsRequest
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