pub trait IDebugDocumentTextExternalAuthor_Impl: Sized {
    // Required methods
    fn GetPathName(
        &self,
        pbstrlongname: *mut BSTR,
        pfisoriginalfile: *mut BOOL,
    ) -> Result<()>;
    fn GetFileName(&self) -> Result<BSTR>;
    fn NotifyChanged(&self) -> Result<()>;
}

Required Methods§

fn GetPathName( &self, pbstrlongname: *mut BSTR, pfisoriginalfile: *mut BOOL, ) -> Result<()>

fn GetFileName(&self) -> Result<BSTR>

fn NotifyChanged(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§