Struct flatcontainer::impls::deduplicate::CollapseSequence
source · pub struct CollapseSequence<R: Region> { /* private fields */ }
Expand description
A region to deduplicate consecutive equal items.
§Examples
The following example shows that two inserts can result in the same index.
use flatcontainer::impls::deduplicate::CollapseSequence;
use flatcontainer::{Push, StringRegion};
let mut r = <CollapseSequence<StringRegion>>::default();
assert_eq!(r.push("abc"), r.push("abc"));
Trait Implementations§
source§impl<R: Region> Default for CollapseSequence<R>
impl<R: Region> Default for CollapseSequence<R>
source§impl<'de, R> Deserialize<'de> for CollapseSequence<R>where
R: Deserialize<'de> + Region,
impl<'de, R> Deserialize<'de> for CollapseSequence<R>where
R: Deserialize<'de> + Region,
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, T> Push<T> for CollapseSequence<R>
impl<R, T> Push<T> for CollapseSequence<R>
source§impl<R: Region> Region for CollapseSequence<R>
impl<R: Region> Region for CollapseSequence<R>
§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 = <R as Region>::Index
type Index = <R as Region>::Index
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 reallocationAuto Trait Implementations§
impl<R> Freeze for CollapseSequence<R>
impl<R> RefUnwindSafe for CollapseSequence<R>
impl<R> Send for CollapseSequence<R>
impl<R> Sync for CollapseSequence<R>
impl<R> Unpin for CollapseSequence<R>
impl<R> UnwindSafe for CollapseSequence<R>
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
)