pub struct GuiApplication { /* private fields */ }

Trait Implementations§

source§

impl From<IDispatch> for GuiApplication

source§

fn from(value: IDispatch) -> Self

Converts to this type from the input type.
source§

impl GuiApplication_Impl<GuiApplication> for GuiApplication

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

fn utils(&self) -> Result<GuiUtils>

source§

fn add_history_entry(&self, p0: String, p1: String) -> Result<bool>

source§

fn create_gui_collection(&self) -> Result<GuiCollection>

source§

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

source§

fn ignore(&self, p0: i16) -> Result<()>

source§

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

source§

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

source§

impl GuiComponent_Impl<GuiApplication> for GuiApplication

source§

impl GuiContainer_Impl<GuiApplication> for GuiApplication

source§

impl HasIDispatch<GuiApplication> for GuiApplication

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.