Struct flatcontainer::impls::string::StringRegion
source · pub struct StringRegion<R = OwnedRegion<u8>> { /* private fields */ }
Expand description
A region to store strings and read &str
.
Delegates to a region R
to store u8
slices. By default, it uses a OwnedRegion
, but a
different region can be provided, as long as it absorbs and reads items as &[u8]
.
Note that all implementations of Push<T> for StringRegion
must only accept valid utf-8 data
because the region does not validate the contents when indexing.
§Examples
We fill some data into a string region and use extract it later.
use flatcontainer::{RegionPreference, Push, OwnedRegion, Region, StringRegion};
let mut r = <StringRegion>::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);
let de_index = r.push(panagram_de);
assert_eq!(panagram_de, r.index(de_index));
assert_eq!(panagram_en, r.index(en_index));
Trait Implementations§
source§impl<R: Clone> Clone for StringRegion<R>
impl<R: Clone> Clone for StringRegion<R>
source§impl<R: Debug> Debug for StringRegion<R>
impl<R: Debug> Debug for StringRegion<R>
source§impl<R: Default> Default for StringRegion<R>
impl<R: Default> Default for StringRegion<R>
source§fn default() -> StringRegion<R>
fn default() -> StringRegion<R>
Returns the “default value” for a type. Read more
source§impl<'de, R> Deserialize<'de> for StringRegion<R>where
R: Deserialize<'de>,
impl<'de, R> Deserialize<'de> for StringRegion<R>where
R: 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> Push<&&str> for StringRegion<R>
impl<R> Push<&&str> for StringRegion<R>
source§impl<R> Push<&String> for StringRegion<R>
impl<R> Push<&String> for StringRegion<R>
source§impl<R> Push<&str> for StringRegion<R>
impl<R> Push<&str> for StringRegion<R>
source§impl<R> Push<String> for StringRegion<R>
impl<R> Push<String> for StringRegion<R>
source§impl<R> Region for StringRegion<R>
impl<R> Region for StringRegion<R>
§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 reallocationsource§impl<'a, 'b: 'a, R> ReserveItems<&'a &'b str> for StringRegion<R>
impl<'a, 'b: 'a, R> ReserveItems<&'a &'b str> for StringRegion<R>
source§impl<'b, R> ReserveItems<&'b String> for StringRegion<R>
impl<'b, R> ReserveItems<&'b String> for StringRegion<R>
source§impl<'b, R> ReserveItems<&'b str> for StringRegion<R>
impl<'b, R> ReserveItems<&'b str> for StringRegion<R>
Auto Trait Implementations§
impl<R> Freeze for StringRegion<R>where
R: Freeze,
impl<R> RefUnwindSafe for StringRegion<R>where
R: RefUnwindSafe,
impl<R> Send for StringRegion<R>where
R: Send,
impl<R> Sync for StringRegion<R>where
R: Sync,
impl<R> Unpin for StringRegion<R>where
R: Unpin,
impl<R> UnwindSafe for StringRegion<R>where
R: 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
)