[][src]Struct opentelemetry_stackdriver::proto::google::devtools::cloudtrace::v2::span::time_event::MessageEvent

pub struct MessageEvent {
    pub type: i32,
    pub id: i64,
    pub uncompressed_size_bytes: i64,
    pub compressed_size_bytes: i64,
}

An event describing a message sent/received between Spans.

Fields

type: i32

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

id: i64

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.

uncompressed_size_bytes: i64

The number of uncompressed bytes sent or received.

compressed_size_bytes: i64

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

Implementations

impl MessageEvent[src]

pub fn type(&self) -> Type[src]

Returns the enum value of type, or the default if the field is set to an invalid enum value.

pub fn set_type(&mut self, value: Type)[src]

Sets type to the provided enum value.

Trait Implementations

impl Clone for MessageEvent[src]

impl Debug for MessageEvent[src]

impl Default for MessageEvent[src]

impl Message for MessageEvent[src]

impl PartialEq<MessageEvent> for MessageEvent[src]

impl StructuralPartialEq for MessageEvent[src]

Auto Trait Implementations

impl RefUnwindSafe for MessageEvent

impl Send for MessageEvent

impl Sync for MessageEvent

impl Unpin for MessageEvent

impl UnwindSafe for MessageEvent

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FutureExt for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]