pub trait StackMut<T>:
Stack<T>
+ BackMut
+ PushBack
+ PopBack { }Expand description
Mutable stack data structure.
This trait alias describes the mutables operations on a stack.
See Stack for more details.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".