pub struct GuiSession { /* private fields */ }

Trait Implementations§

source§

impl From<IDispatch> for GuiSession

source§

fn from(value: IDispatch) -> Self

Converts to this type from the input type.
source§

impl GuiComponent_Impl<GuiSession> for GuiSession

source§

fn container_type(&self) -> Result<bool>

source§

fn id(&self) -> Result<String>

source§

fn name(&self) -> Result<String>

source§

fn _type(&self) -> Result<String>

source§

fn type_as_number(&self) -> Result<i32>

source§

impl GuiContainer_Impl<GuiSession> for GuiSession

source§

fn children(&self) -> Result<GuiComponentCollection>

source§

fn find_by_id(&self, p0: String) -> Result<SAPComponent>

source§

impl GuiSession_Impl<GuiSession> for GuiSession

source§

fn acc_enhanced_tab_chain(&self) -> Result<bool>

source§

fn set_acc_enhanced_tab_chain(&self, value: bool) -> Result<()>

source§

fn acc_symbol_replacement(&self) -> Result<bool>

source§

fn set_acc_symbol_replacement(&self, value: bool) -> Result<()>

source§

fn active_window(&self) -> Result<SAPComponent>

source§

fn busy(&self) -> Result<bool>

source§

fn set_busy(&self, value: bool) -> Result<()>

source§

fn info(&self) -> Result<GuiSessionInfo>

source§

fn is_active(&self) -> Result<bool>

source§

fn is_list_box_active(&self) -> Result<bool>

source§

fn list_box_curr_entry(&self) -> Result<i32>

source§

fn list_box_curr_entry_height(&self) -> Result<i32>

source§

fn list_box_curr_entry_left(&self) -> Result<i32>

source§

fn list_box_curr_entry_top(&self) -> Result<i32>

source§

fn list_box_curr_entry_width(&self) -> Result<i32>

source§

fn list_box_height(&self) -> Result<i32>

source§

fn list_box_left(&self) -> Result<i32>

source§

fn list_box_top(&self) -> Result<i32>

source§

fn list_box_width(&self) -> Result<i32>

source§

fn passport_pre_system_id(&self) -> Result<String>

source§

fn set_passport_pre_system_id(&self, value: String) -> Result<()>

source§

fn passport_system_id(&self) -> Result<String>

source§

fn set_passport_system_id(&self, value: String) -> Result<()>

source§

fn passport_transaction_id(&self) -> Result<String>

source§

fn set_passport_transaction_id(&self, value: String) -> Result<()>

source§

fn progress_percent(&self) -> Result<i32>

source§

fn progress_text(&self) -> Result<String>

source§

fn record(&self) -> Result<bool>

source§

fn set_record(&self, value: bool) -> Result<()>

source§

fn record_file(&self) -> Result<String>

source§

fn set_record_file(&self, value: String) -> Result<()>

source§

fn save_as_unicode(&self) -> Result<bool>

source§

fn set_save_as_unicode(&self, value: bool) -> Result<()>

source§

fn show_dropdown_keys(&self) -> Result<bool>

source§

fn set_show_dropdown_keys(&self, value: bool) -> Result<()>

source§

fn suppress_backend_popups(&self) -> Result<bool>

source§

fn set_suppress_backend_popups(&self, value: bool) -> Result<()>

source§

fn test_tool_mode(&self) -> Result<i32>

source§

fn set_test_tool_mode(&self, value: i32) -> Result<()>

source§

fn as_std_number_format(&self, p0: String) -> Result<String>

source§

fn clear_error_list(&self) -> Result<()>

source§

fn create_session(&self) -> Result<()>

source§

fn enable_jaws_events(&self) -> Result<()>

source§

fn end_transaction(&self) -> Result<()>

source§

fn find_by_position(&self, p0: i32, p1: i32) -> Result<SAPComponent>

source§

fn get_icon_resource_name(&self, p0: String) -> Result<String>

source§

fn get_object_tree(&self, p0: String) -> Result<String>

source§

fn get_v_key_description(&self, p0: i32) -> Result<String>

source§

fn lock_session_ui(&self) -> Result<()>

source§

fn send_command(&self, p0: String) -> Result<()>

source§

fn send_command_async(&self, p0: String) -> Result<()>

source§

fn start_transaction(&self, p0: String) -> Result<()>

source§

fn unlock_session_ui(&self) -> Result<()>

source§

impl HasIDispatch<GuiSession> for GuiSession

source§

fn get_idispatch(&self) -> &IDispatch

Get the IDispatch object for low-level access to this component.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.