pub struct ActivityTraceEntry {
pub process: u32,
pub thread: u32,
pub subsystem: String,
pub category: String,
pub message_type: String,
pub event_type: Option<String>,
pub sender_image_path: String,
pub format_string: Option<String>,
pub name: Option<String>,
pub rendered_message: String,
}Fields§
§process: u32§thread: u32§subsystem: String§category: String§message_type: String§event_type: Option<String>§sender_image_path: String§format_string: Option<String>§name: Option<String>§rendered_message: StringTrait Implementations§
Source§impl Clone for ActivityTraceEntry
impl Clone for ActivityTraceEntry
Source§fn clone(&self) -> ActivityTraceEntry
fn clone(&self) -> ActivityTraceEntry
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 ActivityTraceEntry
impl Debug for ActivityTraceEntry
Source§impl PartialEq for ActivityTraceEntry
impl PartialEq for ActivityTraceEntry
Source§fn eq(&self, other: &ActivityTraceEntry) -> bool
fn eq(&self, other: &ActivityTraceEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ActivityTraceEntry
impl Serialize for ActivityTraceEntry
impl Eq for ActivityTraceEntry
impl StructuralPartialEq for ActivityTraceEntry
Auto Trait Implementations§
impl Freeze for ActivityTraceEntry
impl RefUnwindSafe for ActivityTraceEntry
impl Send for ActivityTraceEntry
impl Sync for ActivityTraceEntry
impl Unpin for ActivityTraceEntry
impl UnsafeUnpin for ActivityTraceEntry
impl UnwindSafe for ActivityTraceEntry
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.