Trait IScriptErrorList_Impl
pub trait IScriptErrorList_Impl: IDispatch_Impl {
Show 14 methods
    // Required methods
    fn advanceError(&self) -> Result<()>;
    fn retreatError(&self) -> Result<()>;
    fn canAdvanceError(&self) -> Result<BOOL>;
    fn canRetreatError(&self) -> Result<BOOL>;
    fn getErrorLine(&self) -> Result<i32>;
    fn getErrorChar(&self) -> Result<i32>;
    fn getErrorCode(&self) -> Result<i32>;
    fn getErrorMsg(&self) -> Result<BSTR>;
    fn getErrorUrl(&self) -> Result<BSTR>;
    fn getAlwaysShowLockState(&self) -> Result<BOOL>;
    fn getDetailsPaneOpen(&self) -> Result<BOOL>;
    fn setDetailsPaneOpen(&self, fdetailspaneopen: BOOL) -> Result<()>;
    fn getPerErrorDisplay(&self) -> Result<BOOL>;
    fn setPerErrorDisplay(&self, fpererrordisplay: BOOL) -> Result<()>;
}Required Methods§
fn advanceError(&self) -> Result<()>
fn retreatError(&self) -> Result<()>
fn canAdvanceError(&self) -> Result<BOOL>
fn canRetreatError(&self) -> Result<BOOL>
fn getErrorLine(&self) -> Result<i32>
fn getErrorChar(&self) -> Result<i32>
fn getErrorCode(&self) -> Result<i32>
fn getErrorMsg(&self) -> Result<BSTR>
fn getErrorUrl(&self) -> Result<BSTR>
fn getAlwaysShowLockState(&self) -> Result<BOOL>
fn getDetailsPaneOpen(&self) -> Result<BOOL>
fn setDetailsPaneOpen(&self, fdetailspaneopen: BOOL) -> Result<()>
fn getPerErrorDisplay(&self) -> Result<BOOL>
fn setPerErrorDisplay(&self, fpererrordisplay: BOOL) -> 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.