[][src]Struct appinsights::telemetry::SessionTagsMut

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

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

Methods

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

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

Session ID - the instance of the user's interaction with the app. Information in the session context fields is always about the end user. When telemetry is sent from a service, the session context is about the user that initiated the operation in the service.

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

Boolean value indicating whether the session identified by ai.session.id is first for the user or not.

Auto Trait Implementations

impl<'a> RefUnwindSafe for SessionTagsMut<'a>

impl<'a> Send for SessionTagsMut<'a>

impl<'a> Sync for SessionTagsMut<'a>

impl<'a> Unpin for SessionTagsMut<'a>

impl<'a> !UnwindSafe for SessionTagsMut<'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>,