Trait SplaySeeker

Source
pub trait SplaySeeker {
    type S: SplaySpec;

    // Required method
    fn splay_seek(&mut self, _node: NodeRef<Immut<'_>, Self::S>) -> Ordering;
}

Required Associated Types§

Required Methods§

Source

fn splay_seek(&mut self, _node: NodeRef<Immut<'_>, Self::S>) -> Ordering

Implementors§

Source§

impl<S> SplaySeeker for SeekLeft<S>
where S: SplaySpec,

Source§

type S = S

Source§

impl<S> SplaySeeker for SeekRight<S>
where S: SplaySpec,

Source§

type S = S