pub enum ForkResult {
Original(ForkDetails),
Forked(ForkDetails),
}Expand description
Indicates which agent the code is running on after fork.
The parameter contains details about the fork result, such as the phantom-ID of the newly
created agent.
Variants§
Trait Implementations§
Source§impl Clone for ForkResult
impl Clone for ForkResult
Source§fn clone(&self) -> ForkResult
fn clone(&self) -> ForkResult
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 ForkResult
impl Debug for ForkResult
impl Copy for ForkResult
Auto Trait Implementations§
impl Freeze for ForkResult
impl RefUnwindSafe for ForkResult
impl Send for ForkResult
impl Sync for ForkResult
impl Unpin for ForkResult
impl UnwindSafe for ForkResult
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