pub trait GnsDroppable: Sized {
    fn drop(&self, socket: &GnsSocket<'_, '_, Self>);
}
Expand description

Simple trait used to allow for a GnsSocket state to drop itself using the parent structure socket.

Required Methods

Implementors