Struct google_cloudtrace2::TimeEvents[][src]

pub struct TimeEvents {
    pub dropped_message_events_count: Option<i32>,
    pub time_event: Option<Vec<TimeEvent>>,
    pub dropped_annotations_count: Option<i32>,
}

A collection of TimeEvents. A TimeEvent is a time-stamped annotation on the span, consisting of either user-supplied key:value pairs, or details of 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 dropped message events in all the included time events. If the value is 0, then no message events were dropped.

A collection of TimeEvents.

The number of dropped annotations in all the included time events. If the value is 0, then no annotations were dropped.

Trait Implementations

impl Default for TimeEvents
[src]

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

impl Clone for TimeEvents
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TimeEvents
[src]

Formats the value using the given formatter. Read more

impl Part for TimeEvents
[src]

Auto Trait Implementations

impl Send for TimeEvents

impl Sync for TimeEvents