pub struct ActionDedup<R>{
_phantom: PhantomData<R>,
table: HashMap<Key, Vec<ActionInstance>>,
}
Expand description
Action deduplicator.
Fields§
§_phantom: PhantomData<R>
§table: HashMap<Key, Vec<ActionInstance>>
Implementations§
Source§impl<R> ActionDedup<R>
impl<R> ActionDedup<R>
Trait Implementations§
Source§impl<I: Interaction, R> Dedup<I> for ActionDedup<R>
impl<I: Interaction, R> Dedup<I> for ActionDedup<R>
Source§impl<R> Default for ActionDedup<R>
impl<R> Default for ActionDedup<R>
Source§fn default() -> ActionDedup<R>
fn default() -> ActionDedup<R>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<R> Freeze for ActionDedup<R>
impl<R> RefUnwindSafe for ActionDedup<R>where
R: RefUnwindSafe,
impl<R> Send for ActionDedup<R>where
R: Send,
impl<R> Sync for ActionDedup<R>where
R: Sync,
impl<R> Unpin for ActionDedup<R>where
R: Unpin,
impl<R> UnwindSafe for ActionDedup<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