[−][src]Trait opentelemetry::baggage::BaggageExt
Methods for sorting and retrieving baggage data in a context.
Required methods
fn with_baggage<T: IntoIterator<Item = I>, I: Into<KeyValueMetadata>>(
&self,
baggage: T
) -> Self
&self,
baggage: T
) -> Self
Returns a clone of the given context with the included name-value pairs.
Examples
use opentelemetry::{baggage::BaggageExt, Context, KeyValue, Value}; let some_context = Context::current(); let cx = some_context.with_baggage(vec![KeyValue::new("my-name", "my-value")]); assert_eq!( cx.baggage().get("my-name"), Some(&Value::from("my-value")), )
fn current_with_baggage<T: IntoIterator<Item = I>, I: Into<KeyValueMetadata>>(
baggage: T
) -> Self
baggage: T
) -> Self
Returns a clone of the current context with the included name-value pairs.
Examples
use opentelemetry::{baggage::BaggageExt, Context, KeyValue, Value}; let cx = Context::current_with_baggage(vec![KeyValue::new("my-name", "my-value")]); assert_eq!( cx.baggage().get("my-name"), Some(&Value::from("my-value")), )
fn with_cleared_baggage(&self) -> Self
Returns a clone of the given context with the included name-value pairs.
Examples
use opentelemetry::{baggage::BaggageExt, Context, KeyValue, Value}; let cx = Context::current().with_cleared_baggage(); assert_eq!(cx.baggage().len(), 0);
fn baggage(&self) -> &Baggage
Returns a reference to this context's baggage, or the default empty baggage if none has been set.
Implementors
impl BaggageExt for Context
[src]
fn with_baggage<T: IntoIterator<Item = I>, I: Into<KeyValueMetadata>>(
&self,
baggage: T
) -> Self
[src]
&self,
baggage: T
) -> Self
fn current_with_baggage<T: IntoIterator<Item = I>, I: Into<KeyValueMetadata>>(
kvs: T
) -> Self
[src]
kvs: T
) -> Self