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