pub type QueueView<T> = QueueInner<T, ViewStorage>;
A Queue with dynamic capacity.
Queue
Queue coerces to QueueView. QueueView is !Sized, meaning it can only ever be used by reference.
QueueView
!Sized
pub struct QueueView<T> { /* private fields */ }