Lines Matching refs:Box
103 // Delegate for `Box<T, A>`: Support a `Box<T, A>` with no lock or an inner lock.
104 impl<T, A> BinaryWriter for Box<T, A>
118 // Delegate for `Pin<Box<T, A>>`: Support a `Pin<Box<T, A>>` with no lock or an inner lock.
119 impl<T, A> BinaryWriter for Pin<Box<T, A>>
244 // Delegate for `Box<T, A>`: Support a `Box<T, A>` with an outer lock.
245 impl<T: ?Sized + BinaryReaderMut, A: Allocator> BinaryReaderMut for Box<T, A> {
309 // Delegate for `Box<T, A>`: Support a `Box<T, A>` with an inner lock.
310 impl<T: ?Sized + BinaryReader, A: Allocator> BinaryReader for Box<T, A> {
320 // Delegate for `Pin<Box<T, A>>`: Support a `Pin<Box<T, A>>` with an inner lock.
321 impl<T: ?Sized + BinaryReader, A: Allocator> BinaryReader for Pin<Box<T, A>> {