pub trait WhoAllocated<T> {
    fn free(ptr: *mut T);
}
Expand description

A trait to track if the contents of a PgBox were allocated by Rust or Postgres.

Required Methods

Implementors