pub struct CorrelationEntry {
pub key: CorrelationKey,
pub value: CorrelationValue,
}Expand description
Defines the correlation entry SDK value. Construction records local state only; documented runtimes, executors, or ports own side effects.
Fields§
§key: CorrelationKeyKey used by this record or request.
value: CorrelationValueValue used by this record or request.
Trait Implementations§
Source§impl Clone for CorrelationEntry
impl Clone for CorrelationEntry
Source§fn clone(&self) -> CorrelationEntry
fn clone(&self) -> CorrelationEntry
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 CorrelationEntry
impl Debug for CorrelationEntry
Source§impl<'de> Deserialize<'de> for CorrelationEntry
impl<'de> Deserialize<'de> for CorrelationEntry
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 for CorrelationEntry
impl PartialEq for CorrelationEntry
Source§fn eq(&self, other: &CorrelationEntry) -> bool
fn eq(&self, other: &CorrelationEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CorrelationEntry
impl Serialize for CorrelationEntry
impl Eq for CorrelationEntry
impl StructuralPartialEq for CorrelationEntry
Auto Trait Implementations§
impl Freeze for CorrelationEntry
impl RefUnwindSafe for CorrelationEntry
impl Send for CorrelationEntry
impl Sync for CorrelationEntry
impl Unpin for CorrelationEntry
impl UnsafeUnpin for CorrelationEntry
impl UnwindSafe for CorrelationEntry
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