Struct flatcontainer::impls::codec::CodecRegion
source · pub struct CodecRegion<C, R = OwnedRegion<u8>> { /* private fields */ }
Expand description
A region that encodes its data in a codec C
.
Trait Implementations§
source§impl<C: Default, R: Default> Default for CodecRegion<C, R>
impl<C: Default, R: Default> Default for CodecRegion<C, R>
source§fn default() -> CodecRegion<C, R>
fn default() -> CodecRegion<C, R>
Returns the “default value” for a type. Read more
source§impl<C: Codec, R> Region for CodecRegion<C, R>
impl<C: Codec, R> Region for CodecRegion<C, R>
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.
§type ReadItem<'a> = &'a [u8]
where
Self: 'a
type ReadItem<'a> = &'a [u8] 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 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<C, R> Freeze for CodecRegion<C, R>
impl<C, R> RefUnwindSafe for CodecRegion<C, R>where
R: RefUnwindSafe,
C: RefUnwindSafe,
impl<C, R> Send for CodecRegion<C, R>
impl<C, R> Sync for CodecRegion<C, R>
impl<C, R> Unpin for CodecRegion<C, R>
impl<C, R> UnwindSafe for CodecRegion<C, R>where
R: UnwindSafe,
C: 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
)