pub struct StackTraceFieldMapping {
pub pid: Option<String>,
pub cpu_id: Option<String>,
pub comm: Option<String>,
pub kstack_sz: Option<String>,
pub ustack_sz: Option<String>,
pub kstack: Option<String>,
pub ustack: Option<String>,
}
Expand description
Specify which field in the provided input struct will be mapped to the corresponding field
Fields§
§pid: Option<String>
§cpu_id: Option<String>
§comm: Option<String>
§kstack_sz: Option<String>
§ustack_sz: Option<String>
§kstack: Option<String>
§ustack: Option<String>
Trait Implementations§
Source§impl Clone for StackTraceFieldMapping
impl Clone for StackTraceFieldMapping
Source§fn clone(&self) -> StackTraceFieldMapping
fn clone(&self) -> StackTraceFieldMapping
Returns a duplicate 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 StackTraceFieldMapping
impl Debug for StackTraceFieldMapping
Source§impl Default for StackTraceFieldMapping
impl Default for StackTraceFieldMapping
Source§fn default() -> StackTraceFieldMapping
fn default() -> StackTraceFieldMapping
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StackTraceFieldMapping
impl<'de> Deserialize<'de> for StackTraceFieldMapping
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
Source§impl PartialEq for StackTraceFieldMapping
impl PartialEq for StackTraceFieldMapping
Source§impl Serialize for StackTraceFieldMapping
impl Serialize for StackTraceFieldMapping
impl Eq for StackTraceFieldMapping
impl StructuralPartialEq for StackTraceFieldMapping
Auto Trait Implementations§
impl Freeze for StackTraceFieldMapping
impl RefUnwindSafe for StackTraceFieldMapping
impl Send for StackTraceFieldMapping
impl Sync for StackTraceFieldMapping
impl Unpin for StackTraceFieldMapping
impl UnwindSafe for StackTraceFieldMapping
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.