Struct rusoto_inspector::DurationRange[][src]

pub struct DurationRange {
    pub max_seconds: Option<i64>,
    pub min_seconds: Option<i64>,
}

This data type is used in the AssessmentTemplateFilter data type.

Fields

The maximum value of the duration range. Must be less than or equal to 604800 seconds (1 week).

The minimum value of the duration range. Must be greater than zero.

Trait Implementations

impl Default for DurationRange
[src]

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

impl Debug for DurationRange
[src]

Formats the value using the given formatter. Read more

impl Clone for DurationRange
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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