Struct timely::container::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, 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.
§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.
§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§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
)