pub struct PointStampStack<R: Region>(/* private fields */)
where
<R as Region>::Item: Columnation;
Expand description
Stack for PointStamp. Part of Columnation implementation.
Trait Implementations§
Source§impl<R: Region> Default for PointStampStack<R>
impl<R: Region> Default for PointStampStack<R>
Source§impl<R: Region> Region for PointStampStack<R>
impl<R: Region> Region for PointStampStack<R>
Source§unsafe fn copy(&mut self, item: &Self::Item) -> Self::Item
unsafe fn copy(&mut self, item: &Self::Item) -> Self::Item
Add a new element to the region. Read more
Source§fn reserve_items<'a, I>(&mut self, items: I)
fn reserve_items<'a, I>(&mut self, items: I)
Ensure that the region can absorb
items
without reallocation.fn reserve_regions<'a, I>(&mut self, regions: I)
Source§fn heap_size(&self, callback: impl FnMut(usize, usize))
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) -> Self
fn with_capacity_items<'a, I>(items: I) -> Self
Allocate an instance of
Self
that can absorb items
without reallocation.Source§fn with_capacity_regions<'a, I>(regions: I) -> Self
fn with_capacity_regions<'a, I>(regions: I) -> Self
Allocate an instance of
Self
that can absorb the items of regions
without reallocation.Auto Trait Implementations§
impl<R> Freeze for PointStampStack<R>
impl<R> RefUnwindSafe for PointStampStack<R>where
<R as Region>::Item: Sized + RefUnwindSafe,
<<R as Region>::Item as Columnation>::InnerRegion: RefUnwindSafe,
impl<R> Send for PointStampStack<R>
impl<R> Sync for PointStampStack<R>
impl<R> Unpin for PointStampStack<R>
impl<R> UnwindSafe for PointStampStack<R>where
<R as Region>::Item: Sized + UnwindSafe,
<<R as Region>::Item as Columnation>::InnerRegion: 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<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
Source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign
, for types that do not implement AddAssign
.