pub struct Recorder<'a, K, V: 'a> {
pub calls: Vec<ChangeType<'a, K, V>>,
/* private fields */
}
Expand description
Fields§
§calls: Vec<ChangeType<'a, K, V>>
A list of all calls the diff
function made on us.
Trait Implementations§
source§impl<'a, K, V> Delegate<'a, K, V> for Recorder<'a, K, V>where
K: Clone,
impl<'a, K, V> Delegate<'a, K, V> for Recorder<'a, K, V>where
K: Clone,
source§impl<'a, K: PartialEq, V: PartialEq + 'a> PartialEq for Recorder<'a, K, V>
impl<'a, K: PartialEq, V: PartialEq + 'a> PartialEq for Recorder<'a, K, V>
impl<'a, K, V: 'a> StructuralPartialEq for Recorder<'a, K, V>
Auto Trait Implementations§
impl<'a, K, V> Freeze for Recorder<'a, K, V>
impl<'a, K, V> RefUnwindSafe for Recorder<'a, K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<'a, K, V> Send for Recorder<'a, K, V>
impl<'a, K, V> Sync for Recorder<'a, K, V>
impl<'a, K, V> Unpin for Recorder<'a, K, V>where
K: Unpin,
impl<'a, K, V> UnwindSafe for Recorder<'a, K, V>where
K: UnwindSafe,
V: RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more