Lines Matching refs:A
34 #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator = Global,
41 pub(super) alloc: ManuallyDrop<A>,
47 impl<T: fmt::Debug, A: Allocator> fmt::Debug for IntoIter<T, A> {
53 impl<T, A: Allocator> IntoIter<T, A> {
91 pub fn allocator(&self) -> &A { in allocator() argument
136 impl<T, A: Allocator> AsRef<[T]> for IntoIter<T, A> {
143 unsafe impl<T: Send, A: Allocator + Send> Send for IntoIter<T, A> {}
145 unsafe impl<T: Sync, A: Allocator + Sync> Sync for IntoIter<T, A> {}
148 impl<T, A: Allocator> Iterator for IntoIter<T, A> {
228 impl<T, A: Allocator> DoubleEndedIterator for IntoIter<T, A> {
271 impl<T, A: Allocator> ExactSizeIterator for IntoIter<T, A> {
278 impl<T, A: Allocator> FusedIterator for IntoIter<T, A> {}
281 unsafe impl<T, A: Allocator> TrustedLen for IntoIter<T, A> {}
297 unsafe impl<T, A: Allocator> TrustedRandomAccessNoCoerce for IntoIter<T, A>
306 impl<T: Clone, A: Allocator + Clone> Clone for IntoIter<T, A> {
318 unsafe impl<#[may_dangle] T, A: Allocator> Drop for IntoIter<T, A> {
320 struct DropGuard<'a, T, A: Allocator>(&'a mut IntoIter<T, A>); in drop()
322 impl<T, A: Allocator> Drop for DropGuard<'_, T, A> { in drop()
346 unsafe impl<T, A: Allocator> InPlaceIterable for IntoIter<T, A> {}
350 unsafe impl<T, A: Allocator> SourceIter for IntoIter<T, A> {