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, R> Clone for CodecRegion<C, R>
impl<C, R> Clone for CodecRegion<C, R>
Source§fn clone(&self) -> CodecRegion<C, R>
fn clone(&self) -> CodecRegion<C, R>
Returns a copy of the value. Read more
Source§fn clone_from(&mut self, source: &CodecRegion<C, R>)
fn clone_from(&mut self, source: &CodecRegion<C, R>)
Performs copy-assignment from
source
. Read moreSource§impl<C, R> Debug for CodecRegion<C, R>
impl<C, R> Debug for CodecRegion<C, R>
Source§impl<C, R> Default for CodecRegion<C, R>
impl<C, R> 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, R> Push<&[u8]> for CodecRegion<C, R>
impl<C, R> Push<&[u8]> for CodecRegion<C, R>
Source§impl<C, R> Region for CodecRegion<C, R>
impl<C, R> Region for CodecRegion<C, R>
Source§fn merge_regions<'a>(
regions: impl Iterator<Item = &'a CodecRegion<C, R>> + Clone,
) -> CodecRegion<C, R>where
CodecRegion<C, R>: 'a,
fn merge_regions<'a>(
regions: impl Iterator<Item = &'a CodecRegion<C, R>> + Clone,
) -> CodecRegion<C, R>where
CodecRegion<C, R>: 'a,
Construct a region that can absorb the contents of regions
in the future.
Source§type ReadItem<'a> = &'a [u8]
where
CodecRegion<C, R>: 'a
type ReadItem<'a> = &'a [u8] where CodecRegion<C, R>: 'a
The type of the data that one gets out of the container.
Source§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: <CodecRegion<C, R> as Region>::Index,
) -> <CodecRegion<C, R> as Region>::ReadItem<'_>
fn index( &self, index: <CodecRegion<C, R> as Region>::Index, ) -> <CodecRegion<C, R> as Region>::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§fn reborrow<'b, 'a>(
item: <CodecRegion<C, R> as Region>::ReadItem<'a>,
) -> <CodecRegion<C, R> as Region>::ReadItem<'b>where
'a: 'b,
C: 'a,
fn reborrow<'b, 'a>(
item: <CodecRegion<C, R> as Region>::ReadItem<'a>,
) -> <CodecRegion<C, R> as Region>::ReadItem<'b>where
'a: 'b,
C: 'a,
Converts a read item into one with a narrower lifetime.
Auto 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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)