Struct rusoto_health::DateTimeRange [] [src]

pub struct DateTimeRange {
    pub from: Option<f64>,
    pub to: Option<f64>,
}

A range of dates and times that is used by the EventFilter and EntityFilter objects. If from is set and to is set: match items where the timestamp (startTime, endTime, or lastUpdatedTime) is between from and to inclusive. If from is set and to is not set: match items where the timestamp value is equal to or after from. If from is not set and to is set: match items where the timestamp value is equal to or before to.

Fields

The starting date and time of a time range.

The ending date and time of a time range.

Trait Implementations

impl Default for DateTimeRange
[src]

[src]

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

impl Debug for DateTimeRange
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DateTimeRange
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for DateTimeRange

impl Sync for DateTimeRange