pub trait GuiPictureExt<T: HasIDispatch = Self>: HasIDispatch<T> {
// Provided methods
fn alt_text(&self) -> Result<String> { ... }
fn display_mode(&self) -> Result<String> { ... }
fn icon(&self) -> Result<String> { ... }
fn url(&self) -> Result<String> { ... }
fn click(&self) -> Result<()> { ... }
fn click_control_area(&self, p0: i32, p1: i32) -> Result<()> { ... }
fn click_picture_area(&self, p0: i32, p1: i32) -> Result<()> { ... }
fn context_menu(&self, p0: i32, p1: i32) -> Result<()> { ... }
fn double_click(&self) -> Result<()> { ... }
fn double_click_control_area(&self, p0: i32, p1: i32) -> Result<()> { ... }
fn double_click_picture_area(&self, p0: i32, p1: i32) -> Result<()> { ... }
}Provided Methods§
fn alt_text(&self) -> Result<String>
fn display_mode(&self) -> Result<String>
fn icon(&self) -> Result<String>
fn url(&self) -> Result<String>
fn click(&self) -> Result<()>
fn click_control_area(&self, p0: i32, p1: i32) -> Result<()>
fn click_picture_area(&self, p0: i32, p1: i32) -> Result<()>
fn double_click(&self) -> Result<()>
fn double_click_control_area(&self, p0: i32, p1: i32) -> Result<()>
fn double_click_picture_area(&self, p0: i32, p1: i32) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".