Struct flatcontainer::impls::slice_copy::OwnedRegion

source ·
pub struct OwnedRegion<T> { /* private fields */ }
Expand description

A container for owned types.

The container can absorb any type, and stores an owned version of the type, similarly to what vectors do. We recommend using this container for copy types, but there is no restriction in the implementation, and in fact it can correctly store owned values, although any data owned by T is regular heap-allocated data, and not contained in regions.

§Examples

use flatcontainer::{Push, OwnedRegion, Region};
let mut r = <OwnedRegion<_>>::default();

let panagram_en = "The quick fox jumps over the lazy dog";
let panagram_de = "Zwölf Boxkämpfer jagen Viktor quer über den großen Sylter Deich";

let en_index = r.push(panagram_en.as_bytes());
let de_index = r.push(panagram_de.as_bytes());

assert_eq!(panagram_de.as_bytes(), r.index(de_index));
assert_eq!(panagram_en.as_bytes(), r.index(en_index));

Trait Implementations§

source§

impl<T: Clone> Clone for OwnedRegion<T>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug> Debug for OwnedRegion<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> Default for OwnedRegion<T>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de, T> Deserialize<'de> for OwnedRegion<T>
where T: Deserialize<'de>,

source§

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<T: Clone> Push<&&[T]> for OwnedRegion<T>
where for<'a> Self: Push<&'a [T]>,

source§

fn push(&mut self, item: &&[T]) -> <OwnedRegion<T> as Region>::Index

Push item into self, returning an index that allows to look up the corresponding read item.
source§

impl<T: Clone, const N: usize> Push<&&[T; N]> for OwnedRegion<T>

source§

fn push(&mut self, item: &&[T; N]) -> <OwnedRegion<T> as Region>::Index

Push item into self, returning an index that allows to look up the corresponding read item.
source§

impl<T: Clone> Push<&[T]> for OwnedRegion<T>

source§

fn push(&mut self, item: &[T]) -> <OwnedRegion<T> as Region>::Index

Push item into self, returning an index that allows to look up the corresponding read item.
source§

impl<T: Clone, const N: usize> Push<&[T; N]> for OwnedRegion<T>

source§

fn push(&mut self, item: &[T; N]) -> <OwnedRegion<T> as Region>::Index

Push item into self, returning an index that allows to look up the corresponding read item.
source§

impl<T: Clone> Push<&Vec<T>> for OwnedRegion<T>

source§

fn push(&mut self, item: &Vec<T>) -> <OwnedRegion<T> as Region>::Index

Push item into self, returning an index that allows to look up the corresponding read item.
source§

impl<T, const N: usize> Push<[T; N]> for OwnedRegion<T>
where [T]: ToOwned,

source§

fn push(&mut self, item: [T; N]) -> <OwnedRegion<T> as Region>::Index

Push item into self, returning an index that allows to look up the corresponding read item.
source§

impl<T: Clone, I: IntoIterator<Item = T>> Push<CopyIter<I>> for OwnedRegion<T>

source§

fn push(&mut self, item: CopyIter<I>) -> <OwnedRegion<T> as Region>::Index

Push item into self, returning an index that allows to look up the corresponding read item.
source§

impl<T> Push<Vec<T>> for OwnedRegion<T>
where [T]: ToOwned,

source§

fn push(&mut self, item: Vec<T>) -> <OwnedRegion<T> as Region>::Index

Push item into self, returning an index that allows to look up the corresponding read item.
source§

impl<T> Region for OwnedRegion<T>
where [T]: ToOwned,

§

type Owned = <[T] as ToOwned>::Owned

An owned type that can be constructed from a read item.
§

type ReadItem<'a> = &'a [T] where Self: 'a

The type of the data that one gets out of the container.
§

type Index = (usize, 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) -> Self
where Self: 'a,

Construct a region that can absorb the contents of regions in the future.
source§

fn index(&self, (start, end): 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)
where Self: 'a, I: Iterator<Item = &'a Self> + Clone,

Ensure that the region can absorb the items of regions without reallocation
source§

fn clear(&mut self)

Remove all elements from this region, but retain allocations if possible.
source§

fn heap_size<F: FnMut(usize, usize)>(&self, callback: F)

Heap size, size - capacity
source§

fn reborrow<'b, 'a: 'b>(item: Self::ReadItem<'a>) -> Self::ReadItem<'b>
where Self: 'a,

Converts a read item into one with a narrower lifetime.
source§

impl<'b, T> ReserveItems<&'b [T]> for OwnedRegion<T>
where [T]: ToOwned,

source§

fn reserve_items<I>(&mut self, items: I)
where I: Iterator<Item = &'b [T]> + Clone,

Ensure that the region can absorb items without reallocation.
source§

impl<'b, T: Clone, const N: usize> ReserveItems<&'b [T; N]> for OwnedRegion<T>

source§

fn reserve_items<I>(&mut self, items: I)
where I: Iterator<Item = &'b [T; N]> + Clone,

Ensure that the region can absorb items without reallocation.
source§

impl<'a, T> ReserveItems<&'a Vec<T>> for OwnedRegion<T>
where [T]: ToOwned,

source§

fn reserve_items<I>(&mut self, items: I)
where I: Iterator<Item = &'a Vec<T>> + Clone,

Ensure that the region can absorb items without reallocation.
source§

impl<T, J: IntoIterator<Item = T>> ReserveItems<CopyIter<J>> for OwnedRegion<T>
where [T]: ToOwned,

source§

fn reserve_items<I>(&mut self, items: I)
where I: Iterator<Item = CopyIter<J>> + Clone,

Ensure that the region can absorb items without reallocation.
source§

impl<T> Serialize for OwnedRegion<T>
where T: Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<T> Freeze for OwnedRegion<T>

§

impl<T> RefUnwindSafe for OwnedRegion<T>
where T: RefUnwindSafe,

§

impl<T> Send for OwnedRegion<T>
where T: Send,

§

impl<T> Sync for OwnedRegion<T>
where T: Sync,

§

impl<T> Unpin for OwnedRegion<T>
where T: Unpin,

§

impl<T> UnwindSafe for OwnedRegion<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,