pub trait IntoSystemDescriptor<Params = ()> {
    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

Implementors