pub unsafe trait TrustedIterAll {
    type T;

    // Required method
    fn for_every(&mut self, func: impl FnMut(&mut Self::T));
}
Expand description

Used by CacheSession::cache_elems()

Safety

Multiple calls must return the same results while contained in CacheSession

Required Associated Types§

source

type T

Required Methods§

source

fn for_every(&mut self, func: impl FnMut(&mut Self::T))

Implementors§

source§

impl<T: Aabb + HasInner> TrustedIterAll for IndTree<'_, '_, T>

§

type T = <T as HasInner>::Inner