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§
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
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.