pub trait SharedMemoryManager {
    type Target;

    // Required methods
    unsafe fn ref_(ptr: *mut Self::Target);
    unsafe fn unref(ptr: *mut Self::Target);
}

Required Associated Types§

Required Methods§

source

unsafe fn ref_(ptr: *mut Self::Target)

§Safety

Callers are responsible for ensuring that a matching call to unref is made at an appropriate time.

source

unsafe fn unref(ptr: *mut Self::Target)

§Safety

Callers are responsible for ensuring that a matching call to ref was made before this is called, and that the pointer is not used after the unref call.

Object Safety§

This trait is not object safe.

Implementors§