pub enum ApplyError {
RefOutOfBounds,
InvalidEvent,
}
Expand description
An error during [dach::Difference::apply
] and crate::log::EventApplier::apply
.
Variants§
RefOutOfBounds
A reference in the difference is out of bounds.
See [dach::ApplyError::RefOutOfBounds
].
InvalidEvent
The function called must not be called on the current event.
Trait Implementations§
source§impl Debug for ApplyError
impl Debug for ApplyError
Auto Trait Implementations§
impl Freeze for ApplyError
impl RefUnwindSafe for ApplyError
impl Send for ApplyError
impl Sync for ApplyError
impl Unpin for ApplyError
impl UnwindSafe for ApplyError
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