Struct flatcontainer::impls::deduplicate::ConsecutiveOffsetPairs
source · pub struct ConsecutiveOffsetPairs<R, O = OffsetOptimized> { /* private fields */ }
Expand description
Transform an index of (usize, usize)
to a sequence of 0..
. Requires the pairs to
be dense, i.e., (i, j)
is followed by (j, k)
.
Defers to region R
for storing items, and uses offset container O
to
remeber indices. By default, O
is Vec<usize>
.
§Examples
The following example shows that two inserts into a copy region have a collapsible index:
use flatcontainer::impls::deduplicate::{CollapseSequence, ConsecutiveOffsetPairs};
use flatcontainer::{Push, OwnedRegion, Region, StringRegion};
let mut r = <ConsecutiveOffsetPairs<OwnedRegion<u8>>>::default();
let index: usize = r.push(&b"abc");
assert_eq!(b"abc", r.index(index));
Trait Implementations§
source§impl<R, O> Default for ConsecutiveOffsetPairs<R, O>
impl<R, O> Default for ConsecutiveOffsetPairs<R, O>
source§impl<'de, R, O> Deserialize<'de> for ConsecutiveOffsetPairs<R, O>where
R: Deserialize<'de>,
O: Deserialize<'de>,
impl<'de, R, O> Deserialize<'de> for ConsecutiveOffsetPairs<R, O>where
R: Deserialize<'de>,
O: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<R, O, T> Push<T> for ConsecutiveOffsetPairs<R, O>
impl<R, O, T> Push<T> for ConsecutiveOffsetPairs<R, O>
source§impl<R, O> Region for ConsecutiveOffsetPairs<R, O>
impl<R, O> Region for ConsecutiveOffsetPairs<R, O>
§type ReadItem<'a> = <R as Region>::ReadItem<'a>
where
Self: 'a
type ReadItem<'a> = <R as Region>::ReadItem<'a> where Self: 'a
The type of the data that one gets out of the container.
§type Index = usize
type Index = usize
The type to index into the container. Should be treated
as an opaque type, even if known.
source§fn merge_regions<'a>(regions: impl Iterator<Item = &'a Self> + Clone) -> Selfwhere
Self: 'a,
fn merge_regions<'a>(regions: impl Iterator<Item = &'a Self> + Clone) -> Selfwhere
Self: 'a,
Construct a region that can absorb the contents of
regions
in the future.source§fn index(&self, index: Self::Index) -> Self::ReadItem<'_>
fn index(&self, index: Self::Index) -> Self::ReadItem<'_>
Index into the container. The index must be obtained by
pushing data into the container.
source§fn reserve_regions<'a, I>(&mut self, regions: I)
fn reserve_regions<'a, I>(&mut self, regions: I)
Ensure that the region can absorb the items of
regions
without reallocationsource§impl<R, O, T> ReserveItems<T> for ConsecutiveOffsetPairs<R, O>
impl<R, O, T> ReserveItems<T> for ConsecutiveOffsetPairs<R, O>
source§fn reserve_items<I>(&mut self, items: I)
fn reserve_items<I>(&mut self, items: I)
Ensure that the region can absorb
items
without reallocation.Auto Trait Implementations§
impl<R, O> Freeze for ConsecutiveOffsetPairs<R, O>
impl<R, O> RefUnwindSafe for ConsecutiveOffsetPairs<R, O>where
R: RefUnwindSafe,
O: RefUnwindSafe,
impl<R, O> Send for ConsecutiveOffsetPairs<R, O>
impl<R, O> Sync for ConsecutiveOffsetPairs<R, O>
impl<R, O> Unpin for ConsecutiveOffsetPairs<R, O>
impl<R, O> UnwindSafe for ConsecutiveOffsetPairs<R, O>where
R: UnwindSafe,
O: UnwindSafe,
Blanket Implementations§
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,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)