pub trait DequeMut<T>:
StackMut<T>
+ FrontMut
+ PushFront
+ PopFront { }
Expand description
Mutable double-ended queue.
This trait alias describes the mutables operations on a deque.
See Deque
for more details.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.