pub enum CloneError {
IterateTasks(Error),
Multithreaded(usize),
Sys(Error),
}
Variants§
IterateTasks(Error)
There was an error trying to iterate this process’s threads.
Multithreaded(usize)
There are multiple threads running. The usize
indicates how many threads.
Sys(Error)
There was an error while cloning.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CloneError
impl !RefUnwindSafe for CloneError
impl Send for CloneError
impl Sync for CloneError
impl Unpin for CloneError
impl !UnwindSafe for CloneError
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