Trait tree_cursor::VerticalCursor
[−]
[src]
pub trait VerticalCursor: OpaqueVerticalCursor where
Self: Sized, { type Item; fn get(&self) -> &Self::Item; fn down_new(&mut self) -> Option<Self>; }
Associated Types
type Item
Required Methods
Implementors
impl<'n, N: 'n + Down> VerticalCursor for TreeCursor<'n, N> type Item = N;
impl<'n, N: 'n + DownMut> VerticalCursor for TreeCursorMut<'n, N> type Item = N;