Lines Matching defs:Box

184 pub struct Box<  struct
189 impl<T> Box<T> { impl
342 impl<T, A: Allocator> Box<T, A> { implementation
592 impl<T> Box<[T]> { impl
711 impl<T, A: Allocator> Box<[T], A> { impl
771 impl<T, A: Allocator> Box<mem::MaybeUninit<T>, A> { impl
846 impl<T, A: Allocator> Box<[mem::MaybeUninit<T>], A> { implementation
885 impl<T: ?Sized> Box<T> { implementation
934 impl<T: ?Sized, A: Allocator> Box<T, A> { implementation
1182 unsafe impl<#[may_dangle] T: ?Sized, A: Allocator> Drop for Box<T, A> { implementation
1190 impl<T: Default> Default for Box<T> { implementation
1200 impl<T> const Default for Box<[T]> { implementation
1210 impl const Default for Box<str> { implementation
1223 impl<T: Clone, A: Allocator + Clone> Clone for Box<T, A> { implementation
1273 impl Clone for Box<str> { implementation
1282 impl<T: ?Sized + PartialEq, A: Allocator> PartialEq for Box<T, A> { implementation
1293 impl<T: ?Sized + PartialOrd, A: Allocator> PartialOrd for Box<T, A> { implementation
1316 impl<T: ?Sized + Ord, A: Allocator> Ord for Box<T, A> { implementation
1323 impl<T: ?Sized + Eq, A: Allocator> Eq for Box<T, A> {} implementation
1326 impl<T: ?Sized + Hash, A: Allocator> Hash for Box<T, A> { implementation
1333 impl<T: ?Sized + Hasher, A: Allocator> Hasher for Box<T, A> { implementation
1386 impl<T> From<T> for Box<T> { implementation
1421 impl<T: Copy> From<&[T]> for Box<[T]> { implementation
1447 impl<T: Copy> From<Cow<'_, [T]>> for Box<[T]> { implementation
1465 impl From<&str> for Box<str> { implementation
1485 impl From<Cow<'_, str>> for Box<str> { implementation
1519 impl<A: Allocator> From<Box<str, A>> for Box<[u8], A> { implementation
1545 impl<T, const N: usize> From<[T; N]> for Box<[T]> { implementation
1562 impl<T, const N: usize> TryFrom<Box<[T]>> for Box<[T; N]> { implementation
1583 impl<A: Allocator> Box<dyn Any, A> { implementation
1642 impl<A: Allocator> Box<dyn Any + Send, A> { impl
1701 impl<A: Allocator> Box<dyn Any + Send + Sync, A> { implementation
1762 impl<T: fmt::Display + ?Sized, A: Allocator> fmt::Display for Box<T, A> { implementation
1769 impl<T: fmt::Debug + ?Sized, A: Allocator> fmt::Debug for Box<T, A> { implementation
1776 impl<T: ?Sized, A: Allocator> fmt::Pointer for Box<T, A> { implementation
1787 impl<T: ?Sized, A: Allocator> const Deref for Box<T, A> { implementation
1797 impl<T: ?Sized, A: Allocator> const DerefMut for Box<T, A> { implementation
1804 impl<T: ?Sized, A: Allocator> Receiver for Box<T, A> {} implementation
1807 impl<I: Iterator + ?Sized, A: Allocator> Iterator for Box<I, A> { implementation
1828 impl<I: Iterator + ?Sized, A: Allocator> BoxIter for Box<I, A> { implementation
1843 impl<I: Iterator, A: Allocator> BoxIter for Box<I, A> { implementation
1850 impl<I: DoubleEndedIterator + ?Sized, A: Allocator> DoubleEndedIterator for Box<I, A> { implementation
1859 impl<I: ExactSizeIterator + ?Sized, A: Allocator> ExactSizeIterator for Box<I, A> { implementation
1869 impl<I: FusedIterator + ?Sized, A: Allocator> FusedIterator for Box<I, A> {} implementation
1872 impl<Args, F: FnOnce<Args> + ?Sized, A: Allocator> FnOnce<Args> for Box<F, A> { implementation
1881 impl<Args, F: FnMut<Args> + ?Sized, A: Allocator> FnMut<Args> for Box<F, A> { implementation
1888 impl<Args, F: Fn<Args> + ?Sized, A: Allocator> Fn<Args> for Box<F, A> { implementation
1895 impl<T: ?Sized + Unsize<U>, U: ?Sized, A: Allocator> CoerceUnsized<Box<U, A>> for Box<T, A> {} implementation
1898 impl<T: ?Sized + Unsize<U>, U: ?Sized> DispatchFromDyn<Box<U>> for Box<T, Global> {} implementation
1902 impl<I> FromIterator<I> for Box<[I]> { implementation
1910 impl<T: Clone, A: Allocator + Clone> Clone for Box<[T], A> { implementation
1926 impl<T: ?Sized, A: Allocator> borrow::Borrow<T> for Box<T, A> { implementation
1933 impl<T: ?Sized, A: Allocator> borrow::BorrowMut<T> for Box<T, A> { implementation
1940 impl<T: ?Sized, A: Allocator> AsRef<T> for Box<T, A> { implementation
1947 impl<T: ?Sized, A: Allocator> AsMut<T> for Box<T, A> { implementation
1977 impl<T: ?Sized, A: Allocator> const Unpin for Box<T, A> where A: 'static {} implementation
1980 impl<G: ?Sized + Generator<R> + Unpin, R, A: Allocator> Generator<R> for Box<G, A> implementation
2006 impl<F: ?Sized + Future + Unpin, A: Allocator> Future for Box<F, A> implementation
2018 impl<S: ?Sized + AsyncIterator + Unpin> AsyncIterator for Box<S> { implementation