pub trait ISpreadsheetItemProvider_Impl: Sized {
    // Required methods
    fn Formula(&self) -> Result<BSTR>;
    fn GetAnnotationObjects(&self) -> Result<*mut SAFEARRAY>;
    fn GetAnnotationTypes(&self) -> Result<*mut SAFEARRAY>;
}

Required Methods§

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

fn GetAnnotationObjects(&self) -> Result<*mut SAFEARRAY>

fn GetAnnotationTypes(&self) -> Result<*mut SAFEARRAY>

Object Safety§

This trait is not object safe.

Implementors§