pub struct ReportedErrorEvent {
pub context: Option<ErrorContext>,
pub event_time: Option<DateTime<Utc>>,
pub message: Option<String>,
pub service_context: Option<ServiceContext>,
}
Expand description
An error event which is reported to the Error Reporting system.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- events report projects (request)
Fields§
§context: Option<ErrorContext>
Optional. A description of the context in which the error occurred.
event_time: Option<DateTime<Utc>>
Optional. Time when the event occurred. If not provided, the time when the event was received by the Error Reporting system is used. If provided, the time must not exceed the logs retention period in the past, or be more than 24 hours in the future. If an invalid time is provided, then an error is returned.
message: Option<String>
Required. The error message. If no context.reportLocation
is provided, the message must contain a header (typically consisting of the exception type name and an error message) and an exception stack trace in one of the supported programming languages and formats. Supported languages are Java, Python, JavaScript, Ruby, C#, PHP, and Go. Supported stack trace formats are: * Java: Must be the return value of Throwable.printStackTrace()
. * Python: Must be the return value of traceback.format_exc()
. * JavaScript: Must be the value of error.stack
as returned by V8. * Ruby: Must contain frames returned by Exception.backtrace
. * C#: Must be the return value of Exception.ToString()
. * PHP: Must be prefixed with "PHP (Notice|Parse error|Fatal error|Warning): "
and contain the result of (string)$exception
. * Go: Must be the return value of runtime.Stack()
.
service_context: Option<ServiceContext>
Required. The service context in which this error has occurred.
Trait Implementations§
Source§impl Clone for ReportedErrorEvent
impl Clone for ReportedErrorEvent
Source§fn clone(&self) -> ReportedErrorEvent
fn clone(&self) -> ReportedErrorEvent
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ReportedErrorEvent
impl Debug for ReportedErrorEvent
Source§impl Default for ReportedErrorEvent
impl Default for ReportedErrorEvent
Source§fn default() -> ReportedErrorEvent
fn default() -> ReportedErrorEvent
Source§impl<'de> Deserialize<'de> for ReportedErrorEvent
impl<'de> Deserialize<'de> for ReportedErrorEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for ReportedErrorEvent
impl Serialize for ReportedErrorEvent
impl RequestValue for ReportedErrorEvent
Auto Trait Implementations§
impl Freeze for ReportedErrorEvent
impl RefUnwindSafe for ReportedErrorEvent
impl Send for ReportedErrorEvent
impl Sync for ReportedErrorEvent
impl Unpin for ReportedErrorEvent
impl UnwindSafe for ReportedErrorEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more