pub trait GuiConnectionExt<T: HasIDispatch = Self>: HasIDispatch<T> {
// Provided methods
fn children(&self) -> Result<GuiComponentCollection> { ... }
fn connection_string(&self) -> Result<String> { ... }
fn description(&self) -> Result<String> { ... }
fn disabled_by_server(&self) -> Result<bool> { ... }
fn sessions(&self) -> Result<GuiComponentCollection> { ... }
fn close_connection(&self) -> Result<()> { ... }
fn close_session(&self, p0: String) -> Result<()> { ... }
}Provided Methods§
fn children(&self) -> Result<GuiComponentCollection>
fn connection_string(&self) -> Result<String>
fn description(&self) -> Result<String>
fn disabled_by_server(&self) -> Result<bool>
fn sessions(&self) -> Result<GuiComponentCollection>
fn close_connection(&self) -> Result<()>
fn close_session(&self, p0: String) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".