Struct bpf_loader_lib::meta::StackTraceFieldMapping
source · 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 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 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<StackTraceFieldMapping> for StackTraceFieldMapping
impl PartialEq<StackTraceFieldMapping> for StackTraceFieldMapping
source§fn eq(&self, other: &StackTraceFieldMapping) -> bool
fn eq(&self, other: &StackTraceFieldMapping) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for StackTraceFieldMapping
impl Serialize for StackTraceFieldMapping
impl Eq for StackTraceFieldMapping
impl StructuralEq for StackTraceFieldMapping
impl StructuralPartialEq for StackTraceFieldMapping
Auto Trait Implementations§
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.