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§
Sourcefn free(&self, rid: Rid)
fn free(&self, rid: Rid)
Release rid (possibly deferred — see MainDeviceSink).