pub struct Mutstore<T> { /* private fields */ }
Implementations§
Source§impl<T> Mutstore<T>
impl<T> Mutstore<T>
pub fn new(area_capacity: usize, vec_capacity: usize) -> Self
pub fn create<E: 'static + LocalMutation<T>>(&mut self, element: E)
pub fn mark_replay_position(&mut self)
pub fn replay_from_last_mark_and_clear_mark(&mut self, state: &mut T)
pub fn apply(&self, state: &mut T)
pub fn clear(&mut self)
Auto Trait Implementations§
impl<T> Freeze for Mutstore<T>
impl<T> !RefUnwindSafe for Mutstore<T>
impl<T> !Send for Mutstore<T>
impl<T> !Sync for Mutstore<T>
impl<T> Unpin for Mutstore<T>
impl<T> !UnwindSafe for Mutstore<T>
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