[][src]Struct appinsights::telemetry::OperationTagsMut

pub struct OperationTagsMut<'a> { /* fields omitted */ }

Tag helper type that provides access to context fields grouped under 'operation'.

Methods

impl<'a> OperationTagsMut<'a>[src]

pub fn set_id(&mut self, value: String)[src]

A unique identifier for the operation instance. The operation.id is created by either a request or a page view. All other telemetry sets this to the value for the containing request or page view. Operation.id is used for finding all the telemetry items for a specific operation instance.

pub fn set_name(&mut self, value: String)[src]

The name (group) of the operation. The operation.name is created by either a request or a page view. All other telemetry items set this to the value for the containing request or page view. Operation.name is used for finding all the telemetry items for a group of operations (i.e. 'GET Home/Index').

pub fn set_parent_id(&mut self, value: String)[src]

The unique identifier of the telemetry item's immediate parent.

pub fn set_synthetic_source(&mut self, value: String)[src]

Name of synthetic source. Some telemetry from the application may represent a synthetic traffic. It may be web crawler indexing the web site, site availability tests or traces from diagnostic libraries like Application Insights SDK itself.

pub fn set_correlation_vector(&mut self, value: String)[src]

The correlation vector is a light weight vector clock which can be used to identify and order related events across clients and services.

Auto Trait Implementations

impl<'a> RefUnwindSafe for OperationTagsMut<'a>

impl<'a> Send for OperationTagsMut<'a>

impl<'a> Sync for OperationTagsMut<'a>

impl<'a> Unpin for OperationTagsMut<'a>

impl<'a> !UnwindSafe for OperationTagsMut<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,