Trait ami::PseudoDrop [] [src]

pub trait PseudoDrop {
    type T;
    fn pdrop(&mut self, parent: &mut Self::T);
}

A trait for the drop method of a child type, where it can access it's parent

Associated Types

The type of the parent data.

Required Methods

The drop method with parent data as a parameter.

Implementors