[−][src]Struct sentry::internals::protocol::v7::Event
Represents a full event for Sentry.
Fields
event_id: Uuid
The ID of the event
level: Level
The level of the event (defaults to error)
fingerprint: Cow<'a, [Cow<'a, str>]>
An optional fingerprint configuration to override the default.
culprit: Option<String>
The culprit of the event.
transaction: Option<String>
The transaction name of the event.
message: Option<String>
A message to be sent with the event.
logentry: Option<LogEntry>
Optionally a log entry that can be used instead of the message for more complex cases.
logger: Option<String>
Optionally the name of the logger that created this event.
modules: BTreeMap<String, String>
Optionally a name to version mapping of installed modules.
platform: Cow<'a, str>
A platform identifier for this event.
timestamp: DateTime<Utc>
The timestamp of when the event was created.
This can be set to None
in which case the server will set a timestamp.
server_name: Option<Cow<'a, str>>
Optionally the server (or device) name of this event.
release: Option<Cow<'a, str>>
A release identifier.
dist: Option<Cow<'a, str>>
An optional distribution identifer.
environment: Option<Cow<'a, str>>
An optional environment identifier.
user: Option<User>
Optionally user data to be sent along.
request: Option<Request>
Optionally HTTP request data to be sent along.
contexts: BTreeMap<String, Context>
Optional contexts.
List of breadcrumbs to send along.
exception: Values<Exception>
Exceptions to be attached (one or multiple if chained).
stacktrace: Option<Stacktrace>
A single stacktrace (deprecated)
template: Option<TemplateInfo>
Simplified template error location info
threads: Values<Thread>
A list of threads.
Optional tags to be attached to the event.
extra: BTreeMap<String, Value>
Optional extra information to be sent with the event.
debug_meta: Cow<'a, DebugMeta>
Debug meta information.
sdk: Option<Cow<'a, ClientSdkInfo>>
SDK metadata
Implementations
impl<'a> Event<'a>
[src]
pub fn new() -> Event<'a>
[src]
Creates a new event with the current timestamp and random id.
pub fn into_owned(self) -> Event<'static>
[src]
Creates a fully owned version of the event.
Trait Implementations
impl<'a> Clone for Event<'a>
[src]
impl<'a> Debug for Event<'a>
[src]
impl<'a> Default for Event<'a>
[src]
impl<'de, 'a> Deserialize<'de> for Event<'a>
[src]
fn deserialize<__D>(
__deserializer: __D
) -> Result<Event<'a>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]
__deserializer: __D
) -> Result<Event<'a>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
impl<'a> Display for Event<'a>
[src]
impl<'a> PartialEq<Event<'a>> for Event<'a>
[src]
impl<'a> Serialize for Event<'a>
[src]
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
impl<'a> StructuralPartialEq for Event<'a>
[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for Event<'a>
impl<'a> Send for Event<'a>
impl<'a> Sync for Event<'a>
impl<'a> Unpin for Event<'a>
impl<'a> UnwindSafe for Event<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,