pub trait ISupportLastWriteTime_Impl: Sized {
    // 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<()>

Object Safety§

This trait is not object safe.

Implementors§