Trait IVssComponentEx_Impl
pub trait IVssComponentEx_Impl: IVssComponent_Impl {
// Required methods
fn SetPrepareForBackupFailureMsg(
&self,
wszfailuremsg: &PCWSTR,
) -> Result<()>;
fn SetPostSnapshotFailureMsg(&self, wszfailuremsg: &PCWSTR) -> Result<()>;
fn GetPrepareForBackupFailureMsg(&self) -> Result<BSTR>;
fn GetPostSnapshotFailureMsg(&self) -> Result<BSTR>;
fn GetAuthoritativeRestore(&self) -> Result<bool>;
fn GetRollForward(
&self,
prolltype: *mut VSS_ROLLFORWARD_TYPE,
pbstrpoint: *mut BSTR,
) -> Result<()>;
fn GetRestoreName(&self) -> Result<BSTR>;
}
Required Methods§
fn SetPrepareForBackupFailureMsg(&self, wszfailuremsg: &PCWSTR) -> Result<()>
fn SetPostSnapshotFailureMsg(&self, wszfailuremsg: &PCWSTR) -> Result<()>
fn GetPrepareForBackupFailureMsg(&self) -> Result<BSTR>
fn GetPostSnapshotFailureMsg(&self) -> Result<BSTR>
fn GetAuthoritativeRestore(&self) -> Result<bool>
fn GetRollForward( &self, prolltype: *mut VSS_ROLLFORWARD_TYPE, pbstrpoint: *mut BSTR, ) -> Result<()>
fn GetRestoreName(&self) -> Result<BSTR>
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.