pub struct StartGroup<G> {
pub group: G,
pub restored_from_gap: bool,
}Expand description
Result of starting a group.
Fields§
§group: G§restored_from_gap: boolTrue if this group was restored from a gap (unstable children).
Auto Trait Implementations§
impl<G> Freeze for StartGroup<G>where
G: Freeze,
impl<G> RefUnwindSafe for StartGroup<G>where
G: RefUnwindSafe,
impl<G> Send for StartGroup<G>where
G: Send,
impl<G> Sync for StartGroup<G>where
G: Sync,
impl<G> Unpin for StartGroup<G>where
G: Unpin,
impl<G> UnwindSafe for StartGroup<G>where
G: UnwindSafe,
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