pub trait GetNextMut {
    type NextPtr;

    fn get_next(&mut self) -> &mut Self::NextPtr;
}
Expand description

This is a utility Trait that fetches the next ptr from an object.

Required Associated Types

Required Methods

Implementors