pub trait Stackable: ForeignType {
type StackType;
}
Expand description
Trait implemented by types which can be placed in a stack.
It should not be implemented for any type outside of this crate.
Required Associated Types§
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.