pub trait DirtyInterfaceSet {
// Required methods
fn mark(&mut self, interface: InterfaceId);
fn drain(&mut self, visit: impl FnMut(InterfaceId));
}Required Methods§
fn mark(&mut self, interface: InterfaceId)
fn drain(&mut self, visit: impl FnMut(InterfaceId))
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
Source§impl DirtyInterfaceSet for BTreeSet<InterfaceId>
Available on crate feature alloc only.
impl DirtyInterfaceSet for BTreeSet<InterfaceId>
Available on crate feature
alloc only.