pub struct ConcurrentApplyError;Expand description
This error is returned when trying to call Patcher::apply while another ApplyResult is alive.
This is to prevent multiple patch operations from happening at the same time, since Asar uses a lot of global state.
Trait Implementations§
Source§impl Clone for ConcurrentApplyError
impl Clone for ConcurrentApplyError
Source§fn clone(&self) -> ConcurrentApplyError
fn clone(&self) -> ConcurrentApplyError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ConcurrentApplyError
impl Debug for ConcurrentApplyError
Auto Trait Implementations§
impl Freeze for ConcurrentApplyError
impl RefUnwindSafe for ConcurrentApplyError
impl Send for ConcurrentApplyError
impl Sync for ConcurrentApplyError
impl Unpin for ConcurrentApplyError
impl UnwindSafe for ConcurrentApplyError
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