pub trait FinalizeNode {
    // Required method
    fn finalize_node(
        &mut self,
        node: &mut AmoWriteGuard<'_, Box<dyn NodeInterface>>
    );
}

Required Methods§

source

fn finalize_node( &mut self, node: &mut AmoWriteGuard<'_, Box<dyn NodeInterface>> )

| Handle removal of a peer (clear state) |

Implementors§