stack.rs 122 B

123456
  1. use core::ptr::NonNull;
  2. pub trait Stack: Sized + Send {
  3. fn new() -> Self;
  4. fn get_bottom(&self) -> NonNull<()>;
  5. }