pub struct GuiApplication { /* private fields */ }
Trait Implementations§
Source§impl From<IDispatch> for GuiApplication
impl From<IDispatch> for GuiApplication
Source§impl GuiApplicationExt for GuiApplication
impl GuiApplicationExt for GuiApplication
fn allow_system_messages(&self) -> Result<bool>
fn set_allow_system_messages(&self, value: bool) -> Result<()>
fn children(&self) -> Result<GuiComponentCollection>
fn connection_error_text(&self) -> Result<String>
fn connections(&self) -> Result<GuiComponentCollection>
fn history_enabled(&self) -> Result<bool>
fn set_history_enabled(&self, value: bool) -> Result<()>
fn major_version(&self) -> Result<i32>
fn minor_version(&self) -> Result<i32>
fn new_visual_design(&self) -> Result<bool>
fn patchlevel(&self) -> Result<i32>
fn revision(&self) -> Result<i32>
fn statusbar_visible(&self) -> Result<bool>
fn set_statusbar_visible(&self, value: bool) -> Result<()>
fn titlebar_visible(&self) -> Result<bool>
fn set_titlebar_visible(&self, value: bool) -> Result<()>
fn toolbar_visible(&self) -> Result<bool>
fn set_toolbar_visible(&self, value: bool) -> Result<()>
fn utils(&self) -> Result<GuiUtils>
fn add_history_entry(&self, p0: String, p1: String) -> Result<bool>
fn create_gui_collection(&self) -> Result<GuiCollection>
fn drop_history(&self) -> Result<bool>
fn ignore(&self, p0: i16) -> Result<()>
fn open_connection(&self, p0: String) -> Result<GuiComponent>
fn open_connection_by_connection_string( &self, p0: String, ) -> Result<GuiComponent>
Source§impl GuiComponentExt for GuiApplication
impl GuiComponentExt for GuiApplication
Source§impl GuiContainerExt for GuiApplication
impl GuiContainerExt for GuiApplication
fn children(&self) -> Result<GuiComponentCollection>
fn find_by_id(&self, p0: String) -> Result<GuiComponent>
Source§impl HasIDispatch for GuiApplication
impl HasIDispatch for GuiApplication
Source§fn get_idispatch(&self) -> &IDispatch
fn get_idispatch(&self) -> &IDispatch
Get the IDispatch object for low-level access to this component.
Source§impl HasSAPType for GuiApplication
impl HasSAPType for GuiApplication
Source§impl IsA<GuiComponent> for GuiApplication
impl IsA<GuiComponent> for GuiApplication
Source§fn upcast(&self) -> GuiComponent
fn upcast(&self) -> GuiComponent
Upcast this value to it’s parent type.
Source§impl IsA<GuiContainer> for GuiApplication
impl IsA<GuiContainer> for GuiApplication
Source§fn upcast(&self) -> GuiContainer
fn upcast(&self) -> GuiContainer
Upcast this value to it’s parent type.
Source§impl VariantTypeExt<'_, GuiApplication> for VARIANT
impl VariantTypeExt<'_, GuiApplication> for VARIANT
Source§fn variant_from(value: GuiApplication) -> VARIANT
fn variant_from(value: GuiApplication) -> VARIANT
Convert from a type T into a
VARIANT
.Source§fn variant_into(&self) -> Result<GuiApplication>
fn variant_into(&self) -> Result<GuiApplication>
Convert from a
VARIANT
into a type, T.Auto Trait Implementations§
impl Freeze for GuiApplication
impl RefUnwindSafe for GuiApplication
impl !Send for GuiApplication
impl !Sync for GuiApplication
impl Unpin for GuiApplication
impl UnwindSafe for GuiApplication
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more