Struct sentry_types::protocol::v7::User[][src]

pub struct User {
    pub id: Option<String>,
    pub email: Option<String>,
    pub ip_address: Option<IpAddress>,
    pub username: Option<String>,
    pub other: Map<String, Value>,
}

Represents user info.

Fields

The ID of the user.

The email address of the user.

The remote ip address of the user.

A human readable username of the user.

Additional arbitrary fields for forwards compatibility.

Trait Implementations

impl Debug for User
[src]

Formats the value using the given formatter. Read more

impl Default for User
[src]

Returns the "default value" for a type. Read more

impl Clone for User
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for User
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for User

impl Sync for User