Struct rusoto_inspector::TimestampRange[][src]

pub struct TimestampRange {
    pub begin_date: Option<f64>,
    pub end_date: Option<f64>,
}

This data type is used in the AssessmentRunFilter data type.

Fields

The minimum value of the timestamp range.

The maximum value of the timestamp range.

Trait Implementations

impl Default for TimestampRange
[src]

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

impl Debug for TimestampRange
[src]

Formats the value using the given formatter. Read more

impl Clone for TimestampRange
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TimestampRange
[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