[][src]Crate disjoint_borrow

Disjoint borrows of slices.

Provides the DisjointSlice type, allowing disjoint borrows over slices by adding runtime checks. Immutable borrows are allowed to intersect with other immutable borrows, while mutable borrows may not intersect with any borrows.

Borrow tracking is implemented as type-level list. This has the advantage that no allocation is necessary, but also limits the number of disjoint borrows to a compile-time constant.

No-std compatible.

Example

use disjoint_borrow::DisjointSlice;

let mut array = [1, 2, 3, 4, 5];
let mut ds = DisjointSlice::new(&mut array);
let (mut ds, mut a) = ds.get_mut(0..2);
let (_, mut b) = ds.get_mut(3..5);

a[0] *= -1;
b[1] *= -1;

assert_eq!(a, &[-1, 2]);
assert_eq!(b, &[4, -5]);

Structs

DisjointSlice

A slice that allows disjoint borrows over its elements. Mutable borrows may not intersect any other borrows, but immutable borrows may intersect other immutable borrows.

RangeLink

A "link" in the borrow chain. Every time a new range is borrowed, a new link is added.

Enums

Error

An error when retrieving a slice.

Traits

RangeSet

A set of ranges.