pub trait PyGCProtocol<'p>: PyClass {
    fn __traverse__(&'p self, visit: PyVisit<'_>) -> Result<(), PyTraverseError>;
    fn __clear__(&'p mut self);
}
Expand description

GC support

Required Methods

Implementors