logo
pub trait SharedPointer {
    fn data_address(&self) -> *const ();
}
Expand description

A deserializable shared pointer type.

Required Methods

Returns the data address for this shared pointer.

Implementations on Foreign Types

Implementors