Trait IExecAction_Impl
pub trait IExecAction_Impl: IAction_Impl {
// Required methods
fn Path(&self, ppath: *mut BSTR) -> Result<()>;
fn SetPath(&self, path: &BSTR) -> Result<()>;
fn Arguments(&self, pargument: *mut BSTR) -> Result<()>;
fn SetArguments(&self, argument: &BSTR) -> Result<()>;
fn WorkingDirectory(&self, pworkingdirectory: *mut BSTR) -> Result<()>;
fn SetWorkingDirectory(&self, workingdirectory: &BSTR) -> Result<()>;
}
Required Methods§
fn Path(&self, ppath: *mut BSTR) -> Result<()>
fn SetPath(&self, path: &BSTR) -> Result<()>
fn Arguments(&self, pargument: *mut BSTR) -> Result<()>
fn SetArguments(&self, argument: &BSTR) -> Result<()>
fn WorkingDirectory(&self, pworkingdirectory: *mut BSTR) -> Result<()>
fn SetWorkingDirectory(&self, workingdirectory: &BSTR) -> Result<()>
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.