Skip to main content

RidSink

Trait RidSink 

Source
pub trait RidSink: Send + Sync {
    // Required method
    fn free(&self, rid: Rid);
}
Expand description

WHO deallocates a RID.

This trait’s implementations are the only legal free_rid call sites in the crate.

Required Methods§

Source

fn free(&self, rid: Rid)

Release rid (possibly deferred — see MainDeviceSink).

Implementors§