Struct Interval
pub struct Interval {
pub start: usize,
pub end: usize,
}Expand description
A fancy version of Range
It is an invariant that start <= end. An interval where end < start is
considered empty.
Fields§
§start: usize§end: usizeImplementations§
§impl Interval
impl Interval
pub fn new(start: usize, end: usize) -> Interval
pub fn new(start: usize, end: usize) -> Interval
Construct a new Interval representing the range [start..end).
It is an invariant that start <= end.
pub fn new_closed_open(start: usize, end: usize) -> Interval
👎Deprecated since 0.3.0:
all intervals are now closed_open, use Interval::new
pub fn new_open_closed(start: usize, end: usize) -> Interval
👎Deprecated since 0.3.0:
all intervals are now closed_open
pub fn new_closed_closed(start: usize, end: usize) -> Interval
👎Deprecated since 0.3.0:
all intervals are now closed_open
pub fn new_open_open(start: usize, end: usize) -> Interval
👎Deprecated since 0.3.0:
all intervals are now closed_open
pub fn start(&self) -> usize
pub fn end(&self) -> usize
pub fn start_end(&self) -> (usize, usize)
pub fn is_before(&self, val: usize) -> bool
pub fn is_before(&self, val: usize) -> bool
the interval is before the point (the point is after the interval)
pub fn is_after(&self, val: usize) -> bool
pub fn is_after(&self, val: usize) -> bool
the interval is after the point (the point is before the interval)
pub fn is_empty(&self) -> bool
pub fn intersect(&self, other: Interval) -> Interval
pub fn union(&self, other: Interval) -> Interval
pub fn prefix(&self, other: Interval) -> Interval
pub fn suffix(&self, other: Interval) -> Interval
pub fn translate(&self, amount: usize) -> Interval
pub fn translate_neg(&self, amount: usize) -> Interval
pub fn size(&self) -> usize
Trait Implementations§
§impl From<RangeInclusive<usize>> for Interval
impl From<RangeInclusive<usize>> for Interval
§fn from(src: RangeInclusive<usize>) -> Interval
fn from(src: RangeInclusive<usize>) -> Interval
Converts to this type from the input type.
§impl From<RangeToInclusive<usize>> for Interval
impl From<RangeToInclusive<usize>> for Interval
§fn from(src: RangeToInclusive<usize>) -> Interval
fn from(src: RangeToInclusive<usize>) -> Interval
Converts to this type from the input type.
impl Copy for Interval
impl Eq for Interval
impl StructuralPartialEq for Interval
Auto Trait Implementations§
impl Freeze for Interval
impl RefUnwindSafe for Interval
impl Send for Interval
impl Sync for Interval
impl Unpin for Interval
impl UnsafeUnpin for Interval
impl UnwindSafe for Interval
Blanket Implementations§
§impl<T> AnyEq for T
impl<T> AnyEq for T
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IntervalBounds for T
impl<T> IntervalBounds for T
fn into_interval(self, _upper_bound: usize) -> Interval
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more