Lines Matching defs:Stack
43 pub struct Stack<T: Stackable>(*mut T::StackType); struct
45 unsafe impl<T: Stackable + Send> Send for Stack<T> {} implementation
46 unsafe impl<T: Stackable + Sync> Sync for Stack<T> {} implementation
48 impl<T> fmt::Debug for Stack<T> implementation
57 impl<T: Stackable> Drop for Stack<T> { implementation
66 impl<T: Stackable> Stack<T> { impl
76 impl<T: Stackable> iter::IntoIterator for Stack<T> { implementation
90 impl<T: Stackable> AsRef<StackRef<T>> for Stack<T> { implementation
96 impl<T: Stackable> Borrow<StackRef<T>> for Stack<T> { implementation
102 impl<T: Stackable> ForeignType for Stack<T> { implementation
122 impl<T: Stackable> Deref for Stack<T> { implementation
130 impl<T: Stackable> DerefMut for Stack<T> { implementation
296 impl<'a, T: Stackable> iter::IntoIterator for &'a Stack<T> { implementation
305 impl<'a, T: Stackable> iter::IntoIterator for &'a mut Stack<T> { implementation