pub trait GuiOfficeIntegrationExt<T: HasIDispatch = Self>: HasIDispatch<T> {
// Provided methods
fn hosted_application(&self) -> Result<i32> { ... }
fn append_row(&self, p0: String, p1: String) -> Result<()> { ... }
fn close_document(&self, p0: i32, p1: bool, p2: bool) -> Result<()> { ... }
fn remove_content(&self, p0: String) -> Result<()> { ... }
fn save_document(&self, p0: i32, p1: bool) -> Result<()> { ... }
fn set_document(&self, p0: i32, p1: String) -> Result<()> { ... }
}Provided Methods§
fn hosted_application(&self) -> Result<i32>
fn append_row(&self, p0: String, p1: String) -> Result<()>
fn close_document(&self, p0: i32, p1: bool, p2: bool) -> Result<()>
fn remove_content(&self, p0: String) -> Result<()>
fn save_document(&self, p0: i32, p1: bool) -> Result<()>
fn set_document(&self, p0: i32, p1: String) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".