pub trait IDebugExpressionContext_Impl: Sized {
    // Required methods
    fn ParseLanguageText(
        &self,
        pstrcode: &PCWSTR,
        nradix: u32,
        pstrdelimiter: &PCWSTR,
        dwflags: u32,
    ) -> Result<IDebugExpression>;
    fn GetLanguageInfo(
        &self,
        pbstrlanguagename: *mut BSTR,
        planguageid: *mut GUID,
    ) -> Result<()>;
}

Required Methods§

fn ParseLanguageText( &self, pstrcode: &PCWSTR, nradix: u32, pstrdelimiter: &PCWSTR, dwflags: u32, ) -> Result<IDebugExpression>

fn GetLanguageInfo( &self, pbstrlanguagename: *mut BSTR, planguageid: *mut GUID, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§