pub struct Interner<I: Internable> { /* private fields */ }
Expand description
The main interning data structure. This lives in the scene builder thread, and handles hashing and interning unique data structures. It also manages a free-list for the items in the data store, which is synchronized via an update list of additions / removals.
Implementations§
Source§impl<I: Internable> Interner<I>
impl<I: Internable> Interner<I>
Sourcepub fn intern<F>(&mut self, data: &I::Key, fun: F) -> Handle<I>where
F: FnOnce() -> I::InternData,
pub fn intern<F>(&mut self, data: &I::Key, fun: F) -> Handle<I>where
F: FnOnce() -> I::InternData,
Intern a data structure, and return a handle to that data. The handle can then be stored in the frame builder, and safely accessed via the data store that lives in the frame builder thread. The provided closure is invoked to build the local data about an interned structure if the key isn’t already interned.
Sourcepub fn end_frame_and_get_pending_updates(&mut self) -> UpdateList<I::Key>
pub fn end_frame_and_get_pending_updates(&mut self) -> UpdateList<I::Key>
Retrieve the pending list of updates for an interner that need to be applied to the data store. Also run a GC step that removes old entries.
Trait Implementations§
Source§impl<I: Internable> Default for Interner<I>
impl<I: Internable> Default for Interner<I>
Source§impl<I: Internable> Index<Handle<I>> for Interner<I>
impl<I: Internable> Index<Handle<I>> for Interner<I>
Retrieve the local data for an item from the interner via handle
Source§type Output = <I as Internable>::InternData
type Output = <I as Internable>::InternData
Source§impl<I> MallocSizeOf for Interner<I>where
I: MallocSizeOf + Internable,
impl<I> MallocSizeOf for Interner<I>where
I: MallocSizeOf + Internable,
Source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
Auto Trait Implementations§
impl<I> Freeze for Interner<I>
impl<I> RefUnwindSafe for Interner<I>where
<I as Internable>::InternData: RefUnwindSafe,
<I as Internable>::Key: RefUnwindSafe,
I: RefUnwindSafe,
impl<I> Send for Interner<I>
impl<I> Sync for Interner<I>
impl<I> Unpin for Interner<I>
impl<I> UnwindSafe for Interner<I>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more