Home
last modified time | relevance | path

Searched defs:DrainFilter (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/smallvec/src/
Dlib.rs431 pub struct DrainFilter<'a, T, F> struct
447 /// of the remainder of the `DrainFilter`. Any unprocessed items will be argument
454 impl <T, F> fmt::Debug for DrainFilter<'_, T, F> argument
466 impl <T, F> Iterator for DrainFilter<'_, T, F> implementation
506 impl <T, F> Drop for DrainFilter<'_, T, F> implementation
557 impl <T, F> DrainFilter<'_, T, F> implementation
/aosp_15_r20/external/rust/android-crates-io/crates/hashbrown/src/
Dset.rs1456 pub struct DrainFilter<'a, K, F, A: Allocator + Clone = Global> struct
1461 inner: DrainFilterInner<'a, K, (), A>, argument
1652 impl<'a, K, F, A: Allocator + Clone> Drop for DrainFilter<'a, K, F, A> implementation
1666 impl<K, F, A: Allocator + Clone> Iterator for DrainFilter<'_, K, F, A> implementation
1685 impl<K, F, A: Allocator + Clone> FusedIterator for DrainFilter<'_, K, F, A> where implementation
Dmap.rs2632 pub struct DrainFilter<'a, K, V, F, A: Allocator + Clone = Global> struct
2637 inner: DrainFilterInner<'a, K, V, A>, argument
2640 impl<'a, K, V, F, A> Drop for DrainFilter<'a, K, V, F, A> argument
2664 impl<K, V, F, A> Iterator for DrainFilter<'_, K, V, F, A> implementation
2682 impl<K, V, F> FusedIterator for DrainFilter<'_, K, V, F> where F: FnMut(&K, &mut V) -> bool {} implementation