Struct flatcontainer::impls::option::OptionRegion
source · pub struct OptionRegion<R> { /* private fields */ }
Expand description
A region to hold Option
s.
§Examples
The region can hold options:
let mut r = <OptionRegion<<u8 as RegionPreference>::Region>>::default();
let some_index = r.push(Some(123));
// Type annotations required for `None`:
let none_index = r.push(Option::<u8>::None);
assert_eq!(Some(123), r.index(some_index));
assert_eq!(None, r.index(none_index));
Trait Implementations§
source§impl<R: Clone> Clone for OptionRegion<R>
impl<R: Clone> Clone for OptionRegion<R>
source§impl<R: Debug> Debug for OptionRegion<R>
impl<R: Debug> Debug for OptionRegion<R>
source§impl<R: Default> Default for OptionRegion<R>
impl<R: Default> Default for OptionRegion<R>
source§fn default() -> OptionRegion<R>
fn default() -> OptionRegion<R>
Returns the “default value” for a type. Read more
source§impl<'de, R> Deserialize<'de> for OptionRegion<R>where
R: Deserialize<'de>,
impl<'de, R> Deserialize<'de> for OptionRegion<R>where
R: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<'a, T: 'a, TR> Push<&'a Option<T>> for OptionRegion<TR>
impl<'a, T: 'a, TR> Push<&'a Option<T>> for OptionRegion<TR>
source§impl<T, TR> Push<Option<T>> for OptionRegion<TR>
impl<T, TR> Push<Option<T>> for OptionRegion<TR>
source§impl<R: Region> Region for OptionRegion<R>
impl<R: Region> Region for OptionRegion<R>
§type ReadItem<'a> = Option<<R as Region>::ReadItem<'a>>
where
Self: 'a
type ReadItem<'a> = Option<<R as Region>::ReadItem<'a>> where Self: 'a
The type of the data that one gets out of the container.
§type Index = Option<<R as Region>::Index>
type Index = Option<<R as Region>::Index>
The type to index into the container. Should be treated
as an opaque type, even if known.
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.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 reallocationsource§impl<'a, T: 'a, TR> ReserveItems<&'a Option<T>> for OptionRegion<TR>
impl<'a, T: 'a, TR> ReserveItems<&'a Option<T>> for OptionRegion<TR>
source§impl<T, TR> ReserveItems<Option<T>> for OptionRegion<TR>where
TR: Region + ReserveItems<T>,
impl<T, TR> ReserveItems<Option<T>> for OptionRegion<TR>where
TR: Region + ReserveItems<T>,
Auto Trait Implementations§
impl<R> Freeze for OptionRegion<R>where
R: Freeze,
impl<R> RefUnwindSafe for OptionRegion<R>where
R: RefUnwindSafe,
impl<R> Send for OptionRegion<R>where
R: Send,
impl<R> Sync for OptionRegion<R>where
R: Sync,
impl<R> Unpin for OptionRegion<R>where
R: Unpin,
impl<R> UnwindSafe for OptionRegion<R>where
R: 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
)