pub trait IRecoverableErrorData_Impl: Sized {
    // Required methods
    fn Initialize(
        &self,
        pcszitemdisplayname: &PCWSTR,
        pcszerrordescription: &PCWSTR
    ) -> Result<()>;
    fn GetItemDisplayName(
        &self,
        pszitemdisplayname: &PCWSTR,
        pcchitemdisplayname: *mut u32
    ) -> Result<()>;
    fn GetErrorDescription(
        &self,
        pszerrordescription: &PCWSTR,
        pccherrordescription: *mut u32
    ) -> Result<()>;
}

Required Methods§

fn Initialize( &self, pcszitemdisplayname: &PCWSTR, pcszerrordescription: &PCWSTR ) -> Result<()>

fn GetItemDisplayName( &self, pszitemdisplayname: &PCWSTR, pcchitemdisplayname: *mut u32 ) -> Result<()>

fn GetErrorDescription( &self, pszerrordescription: &PCWSTR, pccherrordescription: *mut u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§