pub struct SystemContainer { /* private fields */ }Implementations§
Source§impl SystemContainer
impl SystemContainer
pub fn name(&self) -> Cow<'static, str>
pub fn system(&self) -> &(dyn System<In = (), Out = ()> + 'static)
pub fn system_mut(&mut self) -> &mut (dyn System<In = (), Out = ()> + 'static)
pub fn should_run(&self) -> bool
pub fn dependencies(&self) -> &[usize]
pub fn set_dependencies( &mut self, dependencies: impl IntoIterator<Item = usize>, )
pub fn run_criteria(&self) -> Option<usize>
pub fn set_run_criteria(&mut self, index: usize)
pub fn run_criteria_label(&self) -> Option<&RunCriteriaLabelId>
pub fn component_access(&self) -> &Access<ComponentId>
pub fn is_exclusive(&self) -> bool
Trait Implementations§
Source§impl Debug for SystemContainer
impl Debug for SystemContainer
Source§impl GraphNode for SystemContainer
impl GraphNode for SystemContainer
Auto Trait Implementations§
impl Freeze for SystemContainer
impl !RefUnwindSafe for SystemContainer
impl Send for SystemContainer
impl Sync for SystemContainer
impl Unpin for SystemContainer
impl UnsafeUnpin for SystemContainer
impl !UnwindSafe for SystemContainer
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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.