Struct opentelemetry::baggage::Baggage[][src]

pub struct Baggage { /* fields omitted */ }
Expand description

A set of name-value pairs describing user-defined properties.

Baggage Names

Baggage Values

  • URL encoded UTF-8 strings.

Baggage Value Metadata

Additional metadata can be added to values in the form of a property set, represented as semi-colon ; delimited list of names and/or name-value pairs, e.g. ;k1=v1;k2;k3=v3.

Limits

  • Maximum number of name-value pairs: 180.
  • Maximum number of bytes per a single name-value pair: 4096.
  • Maximum total length of all name-value pairs: 8192.

Implementations

Creates an empty Baggage.

Returns a reference to the value associated with a given name

Examples

use opentelemetry::{baggage::Baggage, Value};

let mut cc = Baggage::new();
let _ = cc.insert("my-name", "my-value");

assert_eq!(cc.get("my-name"), Some(&Value::from("my-value")))

Returns a reference to the value and metadata associated with a given name

Examples

use opentelemetry::{baggage::{Baggage, BaggageMetadata}, Value};

let mut cc = Baggage::new();
let _ = cc.insert("my-name", "my-value");

// By default, the metadata is empty
assert_eq!(cc.get_with_metadata("my-name"), Some(&(Value::from("my-value"), BaggageMetadata::from(""))))

Inserts a name-value pair into the baggage.

If the name was not present, None is returned. If the name was present, the value is updated, and the old value is returned.

Examples

use opentelemetry::{baggage::Baggage, Value};

let mut cc = Baggage::new();
let _ = cc.insert("my-name", "my-value");

assert_eq!(cc.get("my-name"), Some(&Value::from("my-value")))

Inserts a name-value pair into the baggage.

Same with insert, if the name was not present, None will be returned. If the name is present, the old value and metadata will be returned.

Examples

use opentelemetry::{baggage::{Baggage, BaggageMetadata}, Value};

let mut cc = Baggage::new();
let _ = cc.insert_with_metadata("my-name", "my-value", "test");

assert_eq!(cc.get_with_metadata("my-name"), Some(&(Value::from("my-value"), BaggageMetadata::from("test"))))

Removes a name from the baggage, returning the value corresponding to the name if the pair was previously in the map.

Returns the number of attributes for this baggage

Returns true if the baggage contains no items.

Gets an iterator over the baggage items, sorted by name.

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Creates a value from an iterator. Read more

Creates a value from an iterator. Read more

Creates a value from an iterator. Read more

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.