pub trait CommandExt {
// Required methods
fn inherit(&mut self);
fn wait_and_check(&mut self);
fn wait(&mut self);
fn print(&mut self) -> &mut Self;
fn rust_log(&mut self, log_option: Option<&str>) -> &mut Self;
}
Required Methods§
fn inherit(&mut self)
fn wait_and_check(&mut self)
fn wait(&mut self)
fn print(&mut self) -> &mut Self
fn rust_log(&mut self, log_option: Option<&str>) -> &mut Self
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.