pub trait CommandOutput: Sized {
// Required method
fn to_err(self) -> Option<BevyError>;
}Expand description
A trait implemented for types that can be used as the output of a Command.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".