Lines Matching defs:Box

199 pub struct Box<  struct
204 impl<T> Box<T> { implementation
364 impl<T, A: Allocator> Box<T, A> { implementation
614 impl<T> Box<[T]> { implementation
737 impl<T, A: Allocator> Box<[T], A> { impl
797 impl<T, A: Allocator> Box<mem::MaybeUninit<T>, A> { impl
870 impl<T, A: Allocator> Box<[mem::MaybeUninit<T>], A> { impl
909 impl<T: ?Sized> Box<T> { impl
959 impl<T: ?Sized, A: Allocator> Box<T, A> { impl
1229 unsafe impl<#[may_dangle] T: ?Sized, A: Allocator> Drop for Box<T, A> { implementation
1247 impl<T: Default> Default for Box<T> { implementation
1257 impl<T> Default for Box<[T]> { implementation
1267 impl Default for Box<str> { implementation
1281 impl<T: Clone, A: Allocator + Clone> Clone for Box<T, A> { implementation
1331 impl Clone for Box<str> { implementation
1340 impl<T: ?Sized + PartialEq, A: Allocator> PartialEq for Box<T, A> { implementation
1351 impl<T: ?Sized + PartialOrd, A: Allocator> PartialOrd for Box<T, A> { implementation
1374 impl<T: ?Sized + Ord, A: Allocator> Ord for Box<T, A> { implementation
1381 impl<T: ?Sized + Eq, A: Allocator> Eq for Box<T, A> {} implementation
1384 impl<T: ?Sized + Hash, A: Allocator> Hash for Box<T, A> { implementation
1391 impl<T: ?Sized + Hasher, A: Allocator> Hasher for Box<T, A> { implementation
1444 impl<T> From<T> for Box<T> { implementation
1491 impl<T: Clone> BoxFromSlice<T> for Box<[T]> { implementation
1499 impl<T: Copy> BoxFromSlice<T> for Box<[T]> { implementation
1513 impl<T: Clone> From<&[T]> for Box<[T]> { implementation
1535 impl<T: Clone> From<Cow<'_, [T]>> for Box<[T]> { implementation
1553 impl From<&str> for Box<str> { implementation
1573 impl From<Cow<'_, str>> for Box<str> { implementation
1607 impl<A: Allocator> From<Box<str, A>> for Box<[u8], A> { implementation
1633 impl<T, const N: usize> From<[T; N]> for Box<[T]> { implementation
1666 impl<T, const N: usize> TryFrom<Box<[T]>> for Box<[T; N]> { implementation
1689 impl<T, const N: usize> TryFrom<Vec<T>> for Box<[T; N]> { implementation
1720 impl<A: Allocator> Box<dyn Any, A> { impl
1779 impl<A: Allocator> Box<dyn Any + Send, A> { impl
1838 impl<A: Allocator> Box<dyn Any + Send + Sync, A> { impl
1899 impl<T: fmt::Display + ?Sized, A: Allocator> fmt::Display for Box<T, A> { implementation
1906 impl<T: fmt::Debug + ?Sized, A: Allocator> fmt::Debug for Box<T, A> { implementation
1913 impl<T: ?Sized, A: Allocator> fmt::Pointer for Box<T, A> { implementation
1923 impl<T: ?Sized, A: Allocator> Deref for Box<T, A> { implementation
1932 impl<T: ?Sized, A: Allocator> DerefMut for Box<T, A> { implementation
1939 impl<T: ?Sized, A: Allocator> Receiver for Box<T, A> {} implementation
1942 impl<I: Iterator + ?Sized, A: Allocator> Iterator for Box<I, A> { implementation
1963 impl<I: Iterator + ?Sized, A: Allocator> BoxIter for Box<I, A> { implementation
1978 impl<I: Iterator, A: Allocator> BoxIter for Box<I, A> { implementation
1985 impl<I: DoubleEndedIterator + ?Sized, A: Allocator> DoubleEndedIterator for Box<I, A> { implementation
1994 impl<I: ExactSizeIterator + ?Sized, A: Allocator> ExactSizeIterator for Box<I, A> { implementation
2004 impl<I: FusedIterator + ?Sized, A: Allocator> FusedIterator for Box<I, A> {} implementation
2007 impl<Args: Tuple, F: FnOnce<Args> + ?Sized, A: Allocator> FnOnce<Args> for Box<F, A> { implementation
2016 impl<Args: Tuple, F: FnMut<Args> + ?Sized, A: Allocator> FnMut<Args> for Box<F, A> { implementation
2023 impl<Args: Tuple, F: Fn<Args> + ?Sized, A: Allocator> Fn<Args> for Box<F, A> { implementation
2030 impl<T: ?Sized + Unsize<U>, U: ?Sized, A: Allocator> CoerceUnsized<Box<U, A>> for Box<T, A> {} implementation
2033 impl<T: ?Sized + Unsize<U>, U: ?Sized> DispatchFromDyn<Box<U>> for Box<T, Global> {} implementation
2037 impl<I> FromIterator<I> for Box<[I]> { implementation
2045 impl<T: Clone, A: Allocator + Clone> Clone for Box<[T], A> { implementation
2061 impl<T: ?Sized, A: Allocator> borrow::Borrow<T> for Box<T, A> { implementation
2068 impl<T: ?Sized, A: Allocator> borrow::BorrowMut<T> for Box<T, A> { implementation
2075 impl<T: ?Sized, A: Allocator> AsRef<T> for Box<T, A> { implementation
2082 impl<T: ?Sized, A: Allocator> AsMut<T> for Box<T, A> { implementation
2111 impl<T: ?Sized, A: Allocator> Unpin for Box<T, A> where A: 'static {} implementation
2114 impl<G: ?Sized + Generator<R> + Unpin, R, A: Allocator> Generator<R> for Box<G, A> implementation
2140 impl<F: ?Sized + Future + Unpin, A: Allocator> Future for Box<F, A> implementation
2152 impl<S: ?Sized + AsyncIterator + Unpin> AsyncIterator for Box<S> { implementation
2211 impl<'a, E: Error + 'a> From<E> for Box<dyn Error + 'a> { implementation
2244 impl<'a, E: Error + Send + Sync + 'a> From<E> for Box<dyn Error + Send + Sync + 'a> { implementation
2283 impl From<String> for Box<dyn Error + Send + Sync> { implementation
2327 impl From<String> for Box<dyn Error> { implementation
2349 impl<'a> From<&str> for Box<dyn Error + Send + Sync + 'a> { implementation
2373 impl From<&str> for Box<dyn Error> { implementation
2395 impl<'a, 'b> From<Cow<'b, str>> for Box<dyn Error + Send + Sync + 'a> { implementation
2417 impl<'a> From<Cow<'a, str>> for Box<dyn Error> { implementation
2437 impl<T: core::error::Error> core::error::Error for Box<T> { implementation