Skip to main content

GetNextMut

Trait GetNextMut 

Source
pub trait GetNextMut {
    type NextPtr;

    // Required method
    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§

Source

fn get_next(&mut self) -> &mut Self::NextPtr

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§