pub trait GuiSessionInfoExt<T: HasIDispatch = Self>: HasIDispatch<T> {
Show 24 methods
// Provided methods
fn application_server(&self) -> Result<String> { ... }
fn client(&self) -> Result<String> { ... }
fn codepage(&self) -> Result<i32> { ... }
fn flushes(&self) -> Result<i32> { ... }
fn group(&self) -> Result<String> { ... }
fn gui_codepage(&self) -> Result<i32> { ... }
fn i18n_mode(&self) -> Result<bool> { ... }
fn interpretation_time(&self) -> Result<i32> { ... }
fn is_low_speed_connection(&self) -> Result<bool> { ... }
fn language(&self) -> Result<String> { ... }
fn message_server(&self) -> Result<String> { ... }
fn program(&self) -> Result<String> { ... }
fn response_time(&self) -> Result<i32> { ... }
fn round_trips(&self) -> Result<i32> { ... }
fn screen_number(&self) -> Result<i32> { ... }
fn scripting_mode_read_only(&self) -> Result<bool> { ... }
fn scripting_mode_recording_disabled(&self) -> Result<bool> { ... }
fn session_number(&self) -> Result<i32> { ... }
fn system_name(&self) -> Result<String> { ... }
fn system_number(&self) -> Result<i32> { ... }
fn system_session_id(&self) -> Result<String> { ... }
fn transaction(&self) -> Result<String> { ... }
fn ui_guideline(&self) -> Result<String> { ... }
fn user(&self) -> Result<String> { ... }
}Provided Methods§
fn application_server(&self) -> Result<String>
fn client(&self) -> Result<String>
fn codepage(&self) -> Result<i32>
fn flushes(&self) -> Result<i32>
fn group(&self) -> Result<String>
fn gui_codepage(&self) -> Result<i32>
fn i18n_mode(&self) -> Result<bool>
fn interpretation_time(&self) -> Result<i32>
fn is_low_speed_connection(&self) -> Result<bool>
fn language(&self) -> Result<String>
fn message_server(&self) -> Result<String>
fn program(&self) -> Result<String>
fn response_time(&self) -> Result<i32>
fn round_trips(&self) -> Result<i32>
fn screen_number(&self) -> Result<i32>
fn scripting_mode_read_only(&self) -> Result<bool>
fn scripting_mode_recording_disabled(&self) -> Result<bool>
fn session_number(&self) -> Result<i32>
fn system_name(&self) -> Result<String>
fn system_number(&self) -> Result<i32>
fn system_session_id(&self) -> Result<String>
fn transaction(&self) -> Result<String>
fn ui_guideline(&self) -> Result<String>
fn user(&self) -> Result<String>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".