pub struct GraphSchedulerPlugin<const LOCKING: bool> { /* private fields */ }Implementations§
Source§impl<const LOCKING: bool> GraphSchedulerPlugin<LOCKING>
impl<const LOCKING: bool> GraphSchedulerPlugin<LOCKING>
pub fn make(self, f: impl FnOnce(Self) -> Self) -> Self
pub fn setup(self, f: impl FnOnce(Self) -> Self) -> Self
pub fn maybe_setup(self, f: impl FnOnce(Self) -> Option<Self>) -> Self
pub fn name(self, name: impl Into<Cow<'static, str>>) -> Self
pub fn inject_into(self, name: impl Into<Cow<'static, str>>) -> Self
pub fn condition<T: UniverseCondition>(self) -> Self
pub fn local<T: Component>(self, component: T) -> Self
pub fn local_raw(self, component: DynamicManaged) -> Self
pub fn resource<T: Component>(self, resource: T) -> Self
pub fn resource_raw(self, resource: DynamicManaged) -> Self
pub fn system(self, system: impl System) -> GraphSchedulerPluginSystem<LOCKING>
pub fn system_setup( self, system: impl System, f: impl FnOnce(GraphSchedulerPluginSystem<LOCKING>) -> GraphSchedulerPluginSystem<LOCKING>, ) -> Self
pub fn is_empty(&self) -> bool
pub fn plugin(self, plugin: Self) -> Self
pub fn plugin_setup(self, f: impl FnOnce(Self) -> Self) -> Self
pub fn maybe_plugin_setup(self, f: impl FnOnce(Self) -> Option<Self>) -> Self
pub fn find_system_by_path(systems: &Systems, path: &str) -> Option<Entity>
Trait Implementations§
Source§impl<const LOCKING: bool> Default for GraphSchedulerPlugin<LOCKING>
impl<const LOCKING: bool> Default for GraphSchedulerPlugin<LOCKING>
Source§fn default() -> GraphSchedulerPlugin<LOCKING>
fn default() -> GraphSchedulerPlugin<LOCKING>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<const LOCKING: bool> Freeze for GraphSchedulerPlugin<LOCKING>
impl<const LOCKING: bool> !RefUnwindSafe for GraphSchedulerPlugin<LOCKING>
impl<const LOCKING: bool> Send for GraphSchedulerPlugin<LOCKING>
impl<const LOCKING: bool> Sync for GraphSchedulerPlugin<LOCKING>
impl<const LOCKING: bool> Unpin for GraphSchedulerPlugin<LOCKING>
impl<const LOCKING: bool> UnsafeUnpin for GraphSchedulerPlugin<LOCKING>
impl<const LOCKING: bool> !UnwindSafe for GraphSchedulerPlugin<LOCKING>
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