Trait IntoSystemDescriptor

Source
pub trait IntoSystemDescriptor<Params = ()> {
    // Required methods
    fn into_descriptor(self) -> SystemDescriptor;
    fn label(self, label: impl SystemLabel) -> SystemDescriptor;
    fn before(self, label: impl SystemLabel) -> SystemDescriptor;
    fn after(self, label: impl SystemLabel) -> SystemDescriptor;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl IntoSystemDescriptor for SystemDescriptor

Source§

impl<S, Params> IntoSystemDescriptor<Params> for S
where S: IntoSystem<(), (), Params>,