pub struct GraphSchedulerGroup<const LOCKING: bool, ID: Component + Clone + PartialEq, Tag: Send + Sync> { /* private fields */ }Implementations§
Source§impl<const LOCKING: bool, ID: Component + Clone + PartialEq, Tag: Send + Sync> GraphSchedulerGroup<LOCKING, ID, Tag>
impl<const LOCKING: bool, ID: Component + Clone + PartialEq, Tag: Send + Sync> GraphSchedulerGroup<LOCKING, ID, Tag>
pub fn quick(self, f: impl FnOnce(QuickPlugin<Tag>) -> QuickPlugin<Tag>) -> Self
pub fn group<L: Bundle + Send + Sync + 'static>( self, id: ID, locals: L, f: impl FnOnce(Self) -> Self, ) -> Self
pub fn system( self, system: impl System, id: ID, locals: impl Bundle + Send + Sync + 'static, ) -> Self
Auto Trait Implementations§
impl<const LOCKING: bool, ID, Tag> Freeze for GraphSchedulerGroup<LOCKING, ID, Tag>where
ID: Freeze,
impl<const LOCKING: bool, ID, Tag> !RefUnwindSafe for GraphSchedulerGroup<LOCKING, ID, Tag>
impl<const LOCKING: bool, ID, Tag> Send for GraphSchedulerGroup<LOCKING, ID, Tag>
impl<const LOCKING: bool, ID, Tag> Sync for GraphSchedulerGroup<LOCKING, ID, Tag>
impl<const LOCKING: bool, ID, Tag> Unpin for GraphSchedulerGroup<LOCKING, ID, Tag>where
ID: Unpin,
impl<const LOCKING: bool, ID, Tag> !UnwindSafe for GraphSchedulerGroup<LOCKING, ID, Tag>
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