pub struct Paralleled<S> { /* private fields */ }Implementations§
Source§impl<S> Paralleled<S>
impl<S> Paralleled<S>
Trait Implementations§
Source§impl<SE: Clone, S: Clone + ApplyDelta<SE>> ApplyDelta<Paralleled<SE>> for Paralleled<S>
Available on crate feature undoredo only.
impl<SE: Clone, S: Clone + ApplyDelta<SE>> ApplyDelta<Paralleled<SE>> for Paralleled<S>
Available on crate feature
undoredo only.Source§fn apply_delta(&mut self, delta: Delta<Paralleled<SE>>)
fn apply_delta(&mut self, delta: Delta<Paralleled<SE>>)
Apply the changes in an delta to a container. Read more
Source§impl<S: Clone> Clone for Paralleled<S>
impl<S: Clone> Clone for Paralleled<S>
Source§fn clone(&self) -> Paralleled<S>
fn clone(&self) -> Paralleled<S>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<S: Debug> Debug for Paralleled<S>
impl<S: Debug> Debug for Paralleled<S>
Source§impl<SE: Clone, S: FlushDelta<SE>> FlushDelta<Paralleled<SE>> for Paralleled<S>
Available on crate feature undoredo only.
impl<SE: Clone, S: FlushDelta<SE>> FlushDelta<Paralleled<SE>> for Paralleled<S>
Available on crate feature
undoredo only.Source§fn flush_delta(&mut self) -> Delta<Paralleled<SE>>
fn flush_delta(&mut self) -> Delta<Paralleled<SE>>
Flush the recorder, returning the recorded delta and replacing it with a
new empty one.
Auto Trait Implementations§
impl<S> Freeze for Paralleled<S>where
S: Freeze,
impl<S> RefUnwindSafe for Paralleled<S>where
S: RefUnwindSafe,
impl<S> Send for Paralleled<S>where
S: Send,
impl<S> Sync for Paralleled<S>where
S: Sync,
impl<S> Unpin for Paralleled<S>where
S: Unpin,
impl<S> UnsafeUnpin for Paralleled<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for Paralleled<S>where
S: UnwindSafe,
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