Struct google_clouderrorreporting1_beta1::ReportedErrorEvent[][src]

pub struct ReportedErrorEvent {
    pub service_context: Option<ServiceContext>,
    pub message: Option<String>,
    pub event_time: Option<String>,
    pub context: Option<ErrorContext>,
}

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).

Fields

[Required] The service context in which this error has occurred.

[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:

[Optional] Time when the event occurred. If not provided, the time when the event was received by the Error Reporting system will be used.

[Optional] A description of the context in which the error occurred.

Trait Implementations

impl Default for ReportedErrorEvent
[src]

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

impl Clone for ReportedErrorEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ReportedErrorEvent
[src]

Formats the value using the given formatter. Read more

impl RequestValue for ReportedErrorEvent
[src]

Auto Trait Implementations