Struct google_clouderrorreporting1_beta1::api::ReportedErrorEvent[][src]

pub struct ReportedErrorEvent {
    pub context: Option<ErrorContext>,
    pub event_time: Option<String>,
    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).

Fields

context: Option<ErrorContext>

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

event_time: Option<String>

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

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 start 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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.