Struct google_cloudtrace2::MessageEvent[][src]

pub struct MessageEvent {
    pub uncompressed_size_bytes: Option<String>,
    pub type_: Option<String>,
    pub id: Option<String>,
    pub compressed_size_bytes: Option<String>,
}

An event describing a message sent/received between Spans.

This type is not used in any activity, and only used as part of another schema.

Fields

The number of uncompressed bytes sent or received.

Type of MessageEvent. Indicates whether the message was sent or received.

An identifier for the MessageEvent's message that can be used to match SENT and RECEIVED MessageEvents. It is recommended to be unique within a Span.

The number of compressed bytes sent or received. If missing assumed to be the same size as uncompressed.

Trait Implementations

impl Default for MessageEvent
[src]

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

impl Clone for MessageEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MessageEvent
[src]

Formats the value using the given formatter. Read more

impl Part for MessageEvent
[src]

Auto Trait Implementations