pub trait IntoOptionalCleanFn: Sized {
    type CleanFn: 'static + FnOnce();
    fn into_optional_clean_fn(self) -> Option<Self::CleanFn>;
}

Associated Types

Required methods

Implementations on Foreign Types

Implementors