Represents the range start, end.

Signature


#[derive(Clone, Drop, PartialEq)]
pub struct RangeInclusive {
    pub start: T,
    pub end: T,
}

Members

start

The lower bound of the range (inclusive).

Signature

pub start: T

end

The upper bound of the range (inclusive).

Signature

pub end: T