pub struct WindowsFileSystemStateContext {
pub process_handle_count: Annotated<u64>,
}
Fields§
§process_handle_count: Annotated<u64>
The number of open handles in the process.
Trait Implementations§
Source§impl Clone for WindowsFileSystemStateContext
impl Clone for WindowsFileSystemStateContext
Source§fn clone(&self) -> WindowsFileSystemStateContext
fn clone(&self) -> WindowsFileSystemStateContext
Returns a copy 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 Default for WindowsFileSystemStateContext
impl Default for WindowsFileSystemStateContext
Source§fn default() -> WindowsFileSystemStateContext
fn default() -> WindowsFileSystemStateContext
Returns the “default value” for a type. Read more
Source§impl From<WindowsFileSystemState> for WindowsFileSystemStateContext
impl From<WindowsFileSystemState> for WindowsFileSystemStateContext
Source§impl IntoValue for WindowsFileSystemStateContext
impl IntoValue for WindowsFileSystemStateContext
Source§fn into_value(self) -> Value
fn into_value(self) -> Value
Boxes the meta structure back into a value.
Source§fn serialize_payload<S>(
&self,
__serializer: S,
__behavior: SkipSerialization,
) -> Result<S::Ok, S::Error>where
Self: Sized,
S: Serializer,
fn serialize_payload<S>(
&self,
__serializer: S,
__behavior: SkipSerialization,
) -> Result<S::Ok, S::Error>where
Self: Sized,
S: Serializer,
Efficiently serializes the payload directly.
Source§fn extract_child_meta(&self) -> MetaMapwhere
Self: Sized,
fn extract_child_meta(&self) -> MetaMapwhere
Self: Sized,
Extracts children meta map out of a value.
Source§impl PartialEq for WindowsFileSystemStateContext
impl PartialEq for WindowsFileSystemStateContext
Source§fn eq(&self, other: &WindowsFileSystemStateContext) -> bool
fn eq(&self, other: &WindowsFileSystemStateContext) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl ProcessValue for WindowsFileSystemStateContext
impl ProcessValue for WindowsFileSystemStateContext
Source§fn value_type(&self) -> EnumSet<ValueType>
fn value_type(&self) -> EnumSet<ValueType>
Returns the type of the value.
Source§fn process_value<P>(
&mut self,
__meta: &mut Meta,
__processor: &mut P,
__state: &ProcessingState<'_>,
) -> ProcessingResultwhere
P: Processor,
fn process_value<P>(
&mut self,
__meta: &mut Meta,
__processor: &mut P,
__state: &ProcessingState<'_>,
) -> ProcessingResultwhere
P: Processor,
Executes a processor on this value.
Source§fn process_child_values<P>(
&mut self,
__processor: &mut P,
__state: &ProcessingState<'_>,
) -> ProcessingResultwhere
P: Processor,
fn process_child_values<P>(
&mut self,
__processor: &mut P,
__state: &ProcessingState<'_>,
) -> ProcessingResultwhere
P: Processor,
Recurses into children of this value.
impl StructuralPartialEq for WindowsFileSystemStateContext
Auto Trait Implementations§
impl Freeze for WindowsFileSystemStateContext
impl RefUnwindSafe for WindowsFileSystemStateContext
impl Send for WindowsFileSystemStateContext
impl Sync for WindowsFileSystemStateContext
impl Unpin for WindowsFileSystemStateContext
impl UnwindSafe for WindowsFileSystemStateContext
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