pub(crate) enum ChildGuard {
Wait(ChildGuard),
Signal(ChildGuard),
}Expand description
The wrapper around a child.
Variants§
Wait(ChildGuard)
The child guard based on the wait backend.
Signal(ChildGuard)
The child guard based on the signal backend.
Implementations§
Auto Trait Implementations§
impl Freeze for ChildGuard
impl RefUnwindSafe for ChildGuard
impl Send for ChildGuard
impl Sync for ChildGuard
impl Unpin for ChildGuard
impl UnwindSafe for ChildGuard
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