Struct sentry_core::protocol::SessionAttributes  
source · pub struct SessionAttributes<'a> {
    pub release: Cow<'a, str>,
    pub environment: Option<Cow<'a, str>>,
    pub ip_address: Option<IpAddr>,
    pub user_agent: Option<String>,
}Expand description
Additional attributes for Sessions.
Fields§
§release: Cow<'a, str>The release version string.
environment: Option<Cow<'a, str>>The environment identifier.
ip_address: Option<IpAddr>The ip address of the user. This data is not persisted but used for filtering.
user_agent: Option<String>The user agent of the user. This data is not persisted but used for filtering.
Trait Implementations§
source§impl<'a> Clone for SessionAttributes<'a>
 
impl<'a> Clone for SessionAttributes<'a>
source§fn clone(&self) -> SessionAttributes<'a>
 
fn clone(&self) -> SessionAttributes<'a>
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<'a> Debug for SessionAttributes<'a>
 
impl<'a> Debug for SessionAttributes<'a>
source§impl<'de, 'a> Deserialize<'de> for SessionAttributes<'a>
 
impl<'de, 'a> Deserialize<'de> for SessionAttributes<'a>
source§fn deserialize<__D>(
    __deserializer: __D
) -> Result<SessionAttributes<'a>, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>( __deserializer: __D ) -> Result<SessionAttributes<'a>, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<'a> PartialEq<SessionAttributes<'a>> for SessionAttributes<'a>
 
impl<'a> PartialEq<SessionAttributes<'a>> for SessionAttributes<'a>
source§fn eq(&self, other: &SessionAttributes<'a>) -> bool
 
fn eq(&self, other: &SessionAttributes<'a>) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl<'a> Serialize for SessionAttributes<'a>
 
impl<'a> Serialize for SessionAttributes<'a>
source§fn serialize<__S>(
    &self,
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
 
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more