pub enum RangeIntersect {
    EqualTo,
    OverlapsLeft,
    OverlapsRight,
    ContainsFirst,
    ContainsProper,
    ContainsLast,
    ContainedByFirst,
    ContainedByProper,
    ContainedByLast,
}
Expand description

Ways in which a pair of ranges (A,B) can intersect

Variants

EqualTo

[ A=B ]

OverlapsLeft

[ A [ ] B ]

OverlapsRight

[ B [ ] A ]

ContainsFirst

[ B ] A ]

ContainsProper

[ A [ B ] ]

ContainsLast

[ A [ B ]

ContainedByFirst

[ A ] B ]

ContainedByProper

[ [ A ] B ]

ContainedByLast

[ B [ A ]

Implementations

Test two inclusive ranges for intersection, returning None if the ranges are disjoint.

assert_eq!(RangeIntersect::compare (&(0..=1), &(4..=5)), None);
assert_eq!(
  RangeIntersect::compare (&(0..=5), &(0..=5)),
  Some (RangeIntersect::EqualTo));
assert_eq!(
  RangeIntersect::compare (&(0..=5), &(1..=4)),
  Some (RangeIntersect::ContainsProper));
assert_eq!(
  RangeIntersect::compare (&(1..=4), &(0..=5)),
  Some (RangeIntersect::ContainedByProper));
assert_eq!(
  RangeIntersect::compare (&(0..=5), &(0..=3)),
  Some (RangeIntersect::ContainsFirst));
assert_eq!(
  RangeIntersect::compare (&(0..=5), &(4..=5)),
  Some (RangeIntersect::ContainsLast));
assert_eq!(
  RangeIntersect::compare (&(0..=2), &(0..=5)),
  Some (RangeIntersect::ContainedByFirst));
assert_eq!(
  RangeIntersect::compare (&(4..=5), &(0..=5)),
  Some (RangeIntersect::ContainedByLast));
assert_eq!(
  RangeIntersect::compare (&(0..=3), &(3..=5)),
  Some (RangeIntersect::OverlapsLeft));
assert_eq!(
  RangeIntersect::compare (&(3..=5), &(0..=3)),
  Some (RangeIntersect::OverlapsRight));

Trait Implementations

Formats the value using the given formatter. Read more

Converts to this type from the input type.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.