Struct rusoto_health::EventDetails[][src]

pub struct EventDetails {
    pub event: Option<Event>,
    pub event_description: Option<String>,
    pub event_metadata: Option<HashMap<String, String>>,
}

Detailed information about an event. A combination of an Event object, an EventDescription object, and additional metadata about the event. Returned by the DescribeEventDetails operation.

Fields

Summary information about the event.

The most recent description of the event.

Additional metadata about the event.

Trait Implementations

impl Default for EventDetails
[src]

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

impl Debug for EventDetails
[src]

Formats the value using the given formatter. Read more

impl Clone for EventDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EventDetails
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations