[][src]Trait grid_trait::range::RangeBoundsPlus

pub trait RangeBoundsPlus {
    type Output: RangeBounds<i32> + Clone;
    fn plus(&self, n: i32) -> Self::Output;
}

Performing addition on RangeBounds types.

Associated Types

Loading content...

Required methods

fn plus(&self, n: i32) -> Self::Output

Loading content...

Implementations on Foreign Types

impl RangeBoundsPlus for Range<i32>[src]

type Output = Self

impl RangeBoundsPlus for RangeFrom<i32>[src]

type Output = Self

impl RangeBoundsPlus for RangeFull[src]

type Output = Self

impl RangeBoundsPlus for RangeInclusive<i32>[src]

type Output = Self

impl RangeBoundsPlus for RangeTo<i32>[src]

type Output = Self

impl RangeBoundsPlus for RangeToInclusive<i32>[src]

type Output = Self

Loading content...

Implementors

impl RangeBoundsPlus for Range0To[src]

type Output = Range<i32>

Loading content...