pub struct PosixFileSystemStateContext {
pub open_file_descriptors: Annotated<u64>,
}
Fields§
§open_file_descriptors: Annotated<u64>
The number of open file descriptors in the crashing process.
Trait Implementations§
Source§impl Clone for PosixFileSystemStateContext
impl Clone for PosixFileSystemStateContext
Source§fn clone(&self) -> PosixFileSystemStateContext
fn clone(&self) -> PosixFileSystemStateContext
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 Debug for PosixFileSystemStateContext
impl Debug for PosixFileSystemStateContext
Source§impl Default for PosixFileSystemStateContext
impl Default for PosixFileSystemStateContext
Source§fn default() -> PosixFileSystemStateContext
fn default() -> PosixFileSystemStateContext
Returns the “default value” for a type. Read more
Source§impl Empty for PosixFileSystemStateContext
impl Empty for PosixFileSystemStateContext
Source§impl From<PosixFileSystemState> for PosixFileSystemStateContext
impl From<PosixFileSystemState> for PosixFileSystemStateContext
Source§impl FromObjectRef for PosixFileSystemStateContext
impl FromObjectRef for PosixFileSystemStateContext
Source§fn from_object_ref(__obj: &mut Object<Value>) -> Self
fn from_object_ref(__obj: &mut Object<Value>) -> Self
Creates a meta structure from key value pairs. Read more
Source§impl FromValue for PosixFileSystemStateContext
impl FromValue for PosixFileSystemStateContext
Source§fn from_value(__value: Annotated<Value>) -> Annotated<Self>
fn from_value(__value: Annotated<Value>) -> Annotated<Self>
Creates a meta structure from an annotated boxed value.
Source§impl IntoObjectRef for PosixFileSystemStateContext
impl IntoObjectRef for PosixFileSystemStateContext
Source§fn into_object_ref(self, __map: &mut Object<Value>)
fn into_object_ref(self, __map: &mut Object<Value>)
Boxes the meta structure back into an object of values. Read more
Source§impl IntoValue for PosixFileSystemStateContext
impl IntoValue for PosixFileSystemStateContext
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.
§fn extract_meta_tree(value: &Annotated<Self>) -> MetaTreewhere
Self: Sized,
fn extract_meta_tree(value: &Annotated<Self>) -> MetaTreewhere
Self: Sized,
Extracts the meta tree out of annotated value. Read more
Source§impl ProcessValue for PosixFileSystemStateContext
impl ProcessValue for PosixFileSystemStateContext
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 PosixFileSystemStateContext
Auto Trait Implementations§
impl Freeze for PosixFileSystemStateContext
impl RefUnwindSafe for PosixFileSystemStateContext
impl Send for PosixFileSystemStateContext
impl Sync for PosixFileSystemStateContext
impl Unpin for PosixFileSystemStateContext
impl UnwindSafe for PosixFileSystemStateContext
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