Struct actix_tools::sentry::sentry_client::protocol::User [−]
pub struct User {
pub id: Option<String>,
pub email: Option<String>,
pub ip_address: Option<IpAddress>,
pub username: Option<String>,
pub data: LinkedHashMap<String, Value, RandomState>,
}Represents user info.
Fields
id: Option<String>
The ID of the user.
email: Option<String>
The email address of the user.
ip_address: Option<IpAddress>
The remote ip address of the user.
username: Option<String>
A human readable username of the user.
data: LinkedHashMap<String, Value, RandomState>
Additional data that should be send along.
Trait Implementations
impl Serialize for User
impl Serialize for Userfn 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
impl Clone for User
impl Clone for Userfn clone(&self) -> User
fn clone(&self) -> UserReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Default for User
impl Default for Userimpl Debug for User
impl Debug for Userfn fmt(&self, f: &mut Formatter) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl<'de> Deserialize<'de> for User where
User: Default,
impl<'de> Deserialize<'de> for User where
User: Default, fn deserialize<__D>(
__deserializer: __D
) -> Result<User, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<User, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>, Deserialize this value from the given Serde deserializer. Read more
impl PartialEq<User> for User
impl PartialEq<User> for User