Struct rusoto_rds::Range[][src]

pub struct Range {
    pub from: Option<i64>,
    pub step: Option<i64>,
    pub to: Option<i64>,
}

A range of integer values.

Fields

The minimum value in the range.

The step value for the range. For example, if you have a range of 5,000 to 10,000, with a step value of 1,000, the valid values start at 5,000 and step up by 1,000. Even though 7,500 is within the range, it isn't a valid value for the range. The valid values are 5,000, 6,000, 7,000, 8,000...

The maximum value in the range.

Trait Implementations

impl Default for Range
[src]

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

impl Debug for Range
[src]

Formats the value using the given formatter. Read more

impl Clone for Range
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Send for Range

impl Sync for Range