Struct opentelemetry_api::baggage::KeyValueMetadata
source · pub struct KeyValueMetadata {
pub key: Key,
pub value: Value,
pub metadata: BaggageMetadata,
}Expand description
Baggage name/value pairs with their associated metadata.
Fields§
§key: KeyDimension or event key
value: ValueDimension or event value
metadata: BaggageMetadataMetadata associate with this key value pair
Implementations§
Trait Implementations§
source§impl Clone for KeyValueMetadata
impl Clone for KeyValueMetadata
source§fn clone(&self) -> KeyValueMetadata
fn clone(&self) -> KeyValueMetadata
Returns a copy of the value. Read more
1.0.0 · 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 KeyValueMetadata
impl Debug for KeyValueMetadata
source§impl From<KeyValue> for KeyValueMetadata
impl From<KeyValue> for KeyValueMetadata
source§impl FromIterator<KeyValueMetadata> for Baggage
impl FromIterator<KeyValueMetadata> for Baggage
source§fn from_iter<I: IntoIterator<Item = KeyValueMetadata>>(iter: I) -> Self
fn from_iter<I: IntoIterator<Item = KeyValueMetadata>>(iter: I) -> Self
Creates a value from an iterator. Read more
source§impl PartialEq for KeyValueMetadata
impl PartialEq for KeyValueMetadata
source§fn eq(&self, other: &KeyValueMetadata) -> bool
fn eq(&self, other: &KeyValueMetadata) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for KeyValueMetadata
Auto Trait Implementations§
impl RefUnwindSafe for KeyValueMetadata
impl Send for KeyValueMetadata
impl Sync for KeyValueMetadata
impl Unpin for KeyValueMetadata
impl UnwindSafe for KeyValueMetadata
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