pub enum ActivityTraceValue {
Bytes(Bytes),
Null,
Struct(Vec<ActivityTraceValue>),
}Variants§
Trait Implementations§
Source§impl Clone for ActivityTraceValue
impl Clone for ActivityTraceValue
Source§fn clone(&self) -> ActivityTraceValue
fn clone(&self) -> ActivityTraceValue
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 ActivityTraceValue
impl Debug for ActivityTraceValue
Source§impl PartialEq for ActivityTraceValue
impl PartialEq for ActivityTraceValue
Source§fn eq(&self, other: &ActivityTraceValue) -> bool
fn eq(&self, other: &ActivityTraceValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ActivityTraceValue
Auto Trait Implementations§
impl !Freeze for ActivityTraceValue
impl RefUnwindSafe for ActivityTraceValue
impl Send for ActivityTraceValue
impl Sync for ActivityTraceValue
impl Unpin for ActivityTraceValue
impl UnsafeUnpin for ActivityTraceValue
impl UnwindSafe for ActivityTraceValue
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