pub trait DrainDelta<Event> {
// Required methods
fn drain_delta<'a>(&'a mut self) -> Drain<'a, Event>;
fn has_changed(&self) -> bool;
fn reset_changed(&mut self);
}Required Methods§
fn drain_delta<'a>(&'a mut self) -> Drain<'a, Event>
fn has_changed(&self) -> bool
fn reset_changed(&mut self)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".