Struct aws_sdk_rds::types::builders::RangeBuilder
source · #[non_exhaustive]pub struct RangeBuilder { /* private fields */ }Expand description
A builder for Range.
Implementations§
source§impl RangeBuilder
impl RangeBuilder
sourcepub fn step(self, input: i32) -> Self
pub fn step(self, input: i32) -> Self
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...
sourcepub fn set_step(self, input: Option<i32>) -> Self
pub fn set_step(self, input: Option<i32>) -> Self
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...
Trait Implementations§
source§impl Clone for RangeBuilder
impl Clone for RangeBuilder
source§fn clone(&self) -> RangeBuilder
fn clone(&self) -> RangeBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for RangeBuilder
impl Debug for RangeBuilder
source§impl Default for RangeBuilder
impl Default for RangeBuilder
source§fn default() -> RangeBuilder
fn default() -> RangeBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<RangeBuilder> for RangeBuilder
impl PartialEq<RangeBuilder> for RangeBuilder
source§fn eq(&self, other: &RangeBuilder) -> bool
fn eq(&self, other: &RangeBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.