pub struct CloneRegion<T> { /* private fields */ }
Expand description

A vacuous region that just clones items.

Trait Implementations§

source§

impl<T> Default for CloneRegion<T>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<T: Clone> Region for CloneRegion<T>

§

type Item = T

The type of item the region contains.
source§

unsafe fn copy(&mut self, item: &Self::Item) -> Self::Item

Add a new element to the region. Read more
source§

fn clear(&mut self)

Retain allocations but discard their contents. Read more
source§

fn reserve_items<'a, I>(&mut self, _items: I)where Self: 'a, I: Iterator<Item = &'a Self::Item> + Clone,

Ensure that the region can absorb items without reallocation.
source§

fn reserve_regions<'a, I>(&mut self, _regions: I)where Self: 'a, I: Iterator<Item = &'a Self> + Clone,

source§

fn heap_size(&self, _callback: impl FnMut(usize, usize))

Determine this region’s memory used and reserved capacity in bytes. Read more
source§

fn with_capacity_items<'a, I>(items: I) -> Selfwhere Self: 'a, I: Iterator<Item = &'a Self::Item> + Clone,

Allocate an instance of Self that can absorb items without reallocation.
source§

fn with_capacity_regions<'a, I>(regions: I) -> Selfwhere Self: 'a, I: Iterator<Item = &'a Self> + Clone,

Allocate an instance of Self that can absorb the items of regions without reallocation.

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for CloneRegion<T>where T: RefUnwindSafe,

§

impl<T> Send for CloneRegion<T>where T: Send,

§

impl<T> Sync for CloneRegion<T>where T: Sync,

§

impl<T> Unpin for CloneRegion<T>where T: Unpin,

§

impl<T> UnwindSafe for CloneRegion<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.