pub struct DecodedLog {
pub log: Value,
pub trace: Option<Value>,
}Expand description
Decoded kind:"log" event.
Fields§
§log: ValueThe raw log payload value.
trace: Option<Value>The raw trace object, when present.
Trait Implementations§
Source§impl Clone for DecodedLog
impl Clone for DecodedLog
Source§fn clone(&self) -> DecodedLog
fn clone(&self) -> DecodedLog
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 DecodedLog
impl Debug for DecodedLog
Source§impl PartialEq for DecodedLog
impl PartialEq for DecodedLog
impl StructuralPartialEq for DecodedLog
Auto Trait Implementations§
impl Freeze for DecodedLog
impl RefUnwindSafe for DecodedLog
impl Send for DecodedLog
impl Sync for DecodedLog
impl Unpin for DecodedLog
impl UnsafeUnpin for DecodedLog
impl UnwindSafe for DecodedLog
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