Trait ITsSbTaskInfo_Impl
pub trait ITsSbTaskInfo_Impl: IUnknownImpl {
// Required methods
fn TargetId(&self) -> Result<BSTR>;
fn StartTime(&self) -> Result<FILETIME>;
fn EndTime(&self) -> Result<FILETIME>;
fn Deadline(&self) -> Result<FILETIME>;
fn Identifier(&self) -> Result<BSTR>;
fn Label(&self) -> Result<BSTR>;
fn Context(&self) -> Result<*mut SAFEARRAY>;
fn Plugin(&self) -> Result<BSTR>;
fn Status(&self) -> Result<RDV_TASK_STATUS>;
}
Required Methods§
fn TargetId(&self) -> Result<BSTR>
fn StartTime(&self) -> Result<FILETIME>
fn EndTime(&self) -> Result<FILETIME>
fn Deadline(&self) -> Result<FILETIME>
fn Identifier(&self) -> Result<BSTR>
fn Label(&self) -> Result<BSTR>
fn Context(&self) -> Result<*mut SAFEARRAY>
fn Plugin(&self) -> Result<BSTR>
fn Status(&self) -> Result<RDV_TASK_STATUS>
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.