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