Struct flatcontainer::impls::slice_copy::CopyRegion
source · pub struct CopyRegion<T: Copy> { /* private fields */ }
Expand description
A container for Copy
types.
§Examples
use flatcontainer::{CopyOnto, CopyRegion, Region};
let mut r = <CopyRegion<_>>::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 = panagram_en.as_bytes().copy_onto(&mut r);
let de_index = panagram_de.as_bytes().copy_onto(&mut r);
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 + Copy> Clone for CopyRegion<T>
impl<T: Clone + Copy> Clone for CopyRegion<T>
source§fn clone(&self) -> CopyRegion<T>
fn clone(&self) -> CopyRegion<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T> CopyOnto<CopyRegion<T>> for &[T]where
T: Copy,
impl<T> CopyOnto<CopyRegion<T>> for &[T]where
T: Copy,
source§fn copy_onto(
self,
target: &mut CopyRegion<T>
) -> <CopyRegion<T> as Region>::Index
fn copy_onto( self, target: &mut CopyRegion<T> ) -> <CopyRegion<T> as Region>::Index
Copy self into the target container, returning an index that allows to
look up the corresponding read item.
source§impl<T> CopyOnto<CopyRegion<T>> for &Vec<T>where
T: Copy,
impl<T> CopyOnto<CopyRegion<T>> for &Vec<T>where
T: Copy,
source§fn copy_onto(
self,
target: &mut CopyRegion<T>
) -> <CopyRegion<T> as Region>::Index
fn copy_onto( self, target: &mut CopyRegion<T> ) -> <CopyRegion<T> as Region>::Index
Copy self into the target container, returning an index that allows to
look up the corresponding read item.
source§impl<T, I: IntoIterator<Item = T>> CopyOnto<CopyRegion<T>> for CopyIter<I>where
T: Copy,
impl<T, I: IntoIterator<Item = T>> CopyOnto<CopyRegion<T>> for CopyIter<I>where
T: Copy,
source§fn copy_onto(
self,
target: &mut CopyRegion<T>
) -> <CopyRegion<T> as Region>::Index
fn copy_onto( self, target: &mut CopyRegion<T> ) -> <CopyRegion<T> as Region>::Index
Copy self into the target container, returning an index that allows to
look up the corresponding read item.
source§impl<T: Copy> Default for CopyRegion<T>
impl<T: Copy> Default for CopyRegion<T>
source§impl<'de, T> Deserialize<'de> for CopyRegion<T>where
T: Deserialize<'de> + Copy,
impl<'de, T> Deserialize<'de> for CopyRegion<T>where
T: Deserialize<'de> + Copy,
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<T: Copy> Region for CopyRegion<T>
impl<T: Copy> Region for CopyRegion<T>
§type Index = (usize, usize)
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) -> 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, (start, end): Self::Index) -> Self::ReadItem<'_>
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)
fn reserve_regions<'a, I>(&mut self, regions: I)
Ensure that the region can absorb the items of
regions
without reallocationsource§impl<T: Copy> ReserveItems<CopyRegion<T>> for &[T]
impl<T: Copy> ReserveItems<CopyRegion<T>> for &[T]
source§fn reserve_items<I>(target: &mut CopyRegion<T>, items: I)
fn reserve_items<I>(target: &mut CopyRegion<T>, items: I)
Ensure that the region can absorb
items
without reallocation.source§impl<T: Copy> ReserveItems<CopyRegion<T>> for &Vec<T>
impl<T: Copy> ReserveItems<CopyRegion<T>> for &Vec<T>
source§fn reserve_items<I>(target: &mut CopyRegion<T>, items: I)
fn reserve_items<I>(target: &mut CopyRegion<T>, items: I)
Ensure that the region can absorb
items
without reallocation.source§impl<T: Copy, J: IntoIterator<Item = T>> ReserveItems<CopyRegion<T>> for CopyIter<J>
impl<T: Copy, J: IntoIterator<Item = T>> ReserveItems<CopyRegion<T>> for CopyIter<J>
source§fn reserve_items<I>(target: &mut CopyRegion<T>, items: I)
fn reserve_items<I>(target: &mut CopyRegion<T>, items: I)
Ensure that the region can absorb
items
without reallocation.Auto Trait Implementations§
impl<T> Freeze for CopyRegion<T>
impl<T> RefUnwindSafe for CopyRegion<T>where
T: RefUnwindSafe,
impl<T> Send for CopyRegion<T>where
T: Send,
impl<T> Sync for CopyRegion<T>where
T: Sync,
impl<T> Unpin for CopyRegion<T>where
T: Unpin,
impl<T> UnwindSafe for CopyRegion<T>where
T: 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<R, O, T> CopyOnto<ConsecutiveOffsetPairs<R, O>> for T
impl<R, O, T> CopyOnto<ConsecutiveOffsetPairs<R, O>> for T
source§fn copy_onto(
self,
target: &mut ConsecutiveOffsetPairs<R, O>
) -> <ConsecutiveOffsetPairs<R, O> as Region>::Index
fn copy_onto( self, target: &mut ConsecutiveOffsetPairs<R, O> ) -> <ConsecutiveOffsetPairs<R, O> as Region>::Index
Copy self into the target container, returning an index that allows to
look up the corresponding read item.