Trait ISupportLastWriteTime_Impl
pub trait ISupportLastWriteTime_Impl: IUnknownImpl {
// Required methods
fn GetItemChangeTime(
&self,
pbitemid: *const u8,
pulltimestamp: *mut u64,
) -> Result<()>;
fn GetChangeUnitChangeTime(
&self,
pbitemid: *const u8,
pbchangeunitid: *const u8,
pulltimestamp: *mut u64,
) -> Result<()>;
}
Required Methods§
fn GetItemChangeTime( &self, pbitemid: *const u8, pulltimestamp: *mut u64, ) -> Result<()>
fn GetChangeUnitChangeTime( &self, pbitemid: *const u8, pbchangeunitid: *const u8, pulltimestamp: *mut u64, ) -> 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.