pub unsafe trait TrustedIterAll {
    type T;

    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

Required Methods

Implementors